mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
16 lines
419 B
Rust
16 lines
419 B
Rust
#![allow(mixed_script_confusables)]
|
||
|
||
fn foo<
|
||
'β, //~ ERROR non-ascii idents are not fully supported
|
||
γ //~ ERROR non-ascii idents are not fully supported
|
||
//~^ WARN type parameter `γ` should have an upper camel case name
|
||
>() {}
|
||
|
||
struct X {
|
||
δ: usize //~ ERROR non-ascii idents are not fully supported
|
||
}
|
||
|
||
pub fn main() {
|
||
let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
|
||
}
|