]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.rs
Auto merge of #60065 - QuietMisdreavus:async-move-doctests, r=ollie27
[rust.git] / src / test / ui / utf8_idents.rs
1 fn foo<
2     'β, //~ ERROR non-ascii idents are not fully supported
3     γ  //~ ERROR non-ascii idents are not fully supported
4        //~^ WARN type parameter `γ` should have an upper camel case name
5 >() {}
6
7 struct X {
8     δ: usize //~ ERROR non-ascii idents are not fully supported
9 }
10
11 pub fn main() {
12     let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
13 }