rust/tests/ui/lint/rfc-2457-non-ascii-idents/lint-mixed-script-confusabl...

20 lines
469 B
Rust
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

//@ check-pass
#![deny(mixed_script_confusables)]
struct ΑctuallyNotLatin;
fn main() {
let λ = 42; // this usage of Greek confirms that Greek is used intentionally.
}
mod роре {
const : &'static str = "アイウ";
// this usage of Katakana confirms that Katakana is used intentionally.
fn () {
let д: usize = 100; // this usage of Cyrillic confirms that Cyrillic is used intentionally.
println!("meow!");
}
}