]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.rs
Auto merge of #57119 - jethrogb:jb/sgx-os-mod2, r=joshtriplett
[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 >() {}
7
8 struct X {
9     δ: usize //~ ERROR non-ascii idents are not fully supported
10 }
11
12 pub fn main() {
13     let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
14 }