mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
20 lines
468 B
Rust
20 lines
468 B
Rust
// 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!");
|
||
}
|
||
}
|