rust/tests/ui/disallowed_script_idents.rs
2023-08-22 17:17:48 +02:00

15 lines
307 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.

#![deny(clippy::disallowed_script_idents)]
#![allow(dead_code)]
fn main() {
// OK, latin is allowed.
let counter = 10;
// OK, it's still latin.
let zähler = 10;
// Cyrillic is not allowed by default.
let счётчик = 10;
// Same for japanese.
let = 10;
}