]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.stderr
Rollup merge of #57353 - huonw:faster-finiteness-checks, r=KodrAus
[rust.git] / src / test / ui / utf8_idents.stderr
1 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
2   --> $DIR/utf8_idents.rs:4:5
3    |
4 LL |     'β, //~ ERROR non-ascii idents are not fully supported
5    |     ^^
6    |
7    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
8
9 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
10   --> $DIR/utf8_idents.rs:5:5
11    |
12 LL |     γ  //~ ERROR non-ascii idents are not fully supported
13    |     ^
14    |
15    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
16
17 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
18   --> $DIR/utf8_idents.rs:10:5
19    |
20 LL |     δ: usize //~ ERROR non-ascii idents are not fully supported
21    |     ^
22    |
23    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
24
25 error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
26   --> $DIR/utf8_idents.rs:14:9
27    |
28 LL |     let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
29    |         ^
30    |
31    = help: add #![feature(non_ascii_idents)] to the crate attributes to enable
32
33 warning: type parameter `γ` should have a camel case name such as `Γ`
34   --> $DIR/utf8_idents.rs:5:5
35    |
36 LL |     γ  //~ ERROR non-ascii idents are not fully supported
37    |     ^
38    |
39    = note: #[warn(non_camel_case_types)] on by default
40
41 error: aborting due to 4 previous errors
42
43 For more information about this error, try `rustc --explain E0658`.