mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
12 lines
411 B
Rust
12 lines
411 B
Rust
![]() |
#![feature(non_ascii_idents)]
|
||
|
#![deny(uncommon_codepoints)]
|
||
|
|
||
|
const µ: f64 = 0.000001; //~ ERROR identifier contains uncommon Unicode codepoints
|
||
|
|
||
|
fn dijkstra() {} //~ ERROR identifier contains uncommon Unicode codepoints
|
||
|
|
||
|
fn main() {
|
||
|
let ㇻㇲㇳ = "rust"; //~ ERROR identifier contains uncommon Unicode codepoints
|
||
|
println!("{}", ㇻㇲㇳ); //~ ERROR identifier contains uncommon Unicode codepoints
|
||
|
}
|