2f95299f6b
Also, fix an issue where internal upper case letters were converted to lower case.
14 lines
382 B
Rust
14 lines
382 B
Rust
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
|
||
}
|