2020-06-23 06:45:13 -05:00
|
|
|
|
#![deny(mixed_script_confusables)]
|
|
|
|
|
|
|
|
|
|
struct ΑctuallyNotLatin;
|
2021-10-03 01:53:02 -05:00
|
|
|
|
//~^ ERROR the usage of Script Group `Greek` in this crate consists solely of
|
2020-06-23 06:45:13 -05:00
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let v = ΑctuallyNotLatin;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mod роре {
|
2021-10-03 01:53:02 -05:00
|
|
|
|
//~^ ERROR the usage of Script Group `Cyrillic` in this crate consists solely of
|
2020-06-23 06:45:13 -05:00
|
|
|
|
const エ: &'static str = "アイウ";
|
2021-10-03 01:53:02 -05:00
|
|
|
|
//~^ ERROR the usage of Script Group `Japanese, Katakana` in this crate consists solely of
|
2020-06-23 06:45:13 -05:00
|
|
|
|
}
|