]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.rs
Rollup merge of #57232 - Zoxc:par-collector-misc, r=michaelwoerister
[rust.git] / src / test / ui / utf8_idents.rs
1 //
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 a 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 }