rust/tests/ui/lint/rfc-2457-non-ascii-idents/lint-mixed-script-confusables-2.rs
2024-02-16 20:02:50 +00:00

20 lines
469 B
Rust
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//@ 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!");
}
}