]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.rs
Merge branch 'master' into feature/incorporate-tracing
[rust.git] / src / test / ui / utf8_idents.rs
1 #![allow(mixed_script_confusables)]
2
3 fn foo<
4     'β, //~ ERROR non-ascii idents are not fully supported
5     γ  //~ ERROR non-ascii idents are not fully supported
6        //~^ WARN type parameter `γ` should have an upper camel case name
7 >() {}
8
9 struct X {
10     δ: usize //~ ERROR non-ascii idents are not fully supported
11 }
12
13 pub fn main() {
14     let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
15 }