rust/tests/ui/lint/rfc-2457-non-ascii-idents/lint-mixed-script-confusables-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
468 B
Rust
Raw Normal View History

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