mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 04:28:17 +00:00
15 lines
423 B
Rust
15 lines
423 B
Rust
#![deny(mixed_script_confusables)]
|
||
|
||
struct ΑctuallyNotLatin;
|
||
//~^ ERROR the usage of Script Group `Greek` in this crate consists solely of
|
||
|
||
fn main() {
|
||
let v = ΑctuallyNotLatin;
|
||
}
|
||
|
||
mod роре {
|
||
//~^ ERROR the usage of Script Group `Cyrillic` in this crate consists solely of
|
||
const エ: &'static str = "アイウ";
|
||
//~^ ERROR the usage of Script Group `Japanese, Katakana` in this crate consists solely of
|
||
}
|