diff options
| author | Eric Huss <eric@huss.org> | 2024-12-08 12:09:58 -0800 | 
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2024-12-09 06:23:59 -0800 | 
| commit | a97404eee382141939459fb879cab84233d02d15 (patch) | |
| tree | 32e79e1e757b701dd13e94d5b9afaa1efe0855b3 /compiler/rustc_parse/src/lib.rs | |
| parent | f33a8c6426074b7ce8d08740e9805fdca96ee150 (diff) | |
| download | rust-a97404eee382141939459fb879cab84233d02d15.tar.gz rust-a97404eee382141939459fb879cab84233d02d15.zip | |
Add test to check unicode identifier version
Diffstat (limited to 'compiler/rustc_parse/src/lib.rs')
| -rw-r--r-- | compiler/rustc_parse/src/lib.rs | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs index 2792050a0b3..f963a424a7f 100644 --- a/compiler/rustc_parse/src/lib.rs +++ b/compiler/rustc_parse/src/lib.rs @@ -24,6 +24,7 @@ use rustc_data_structures::sync::Lrc; use rustc_errors::{Diag, FatalError, PResult}; use rustc_session::parse::ParseSess; use rustc_span::{FileName, SourceFile, Span}; +pub use unicode_normalization::UNICODE_VERSION as UNICODE_NORMALIZATION_VERSION; pub const MACRO_ARGUMENTS: Option<&str> = Some("macro arguments"); | 
