]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.stderr
Move parse-fail tests to UI
[rust.git] / src / test / ui / utf8_idents.stderr
1 error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
2   --> $DIR/utf8_idents.rs:13: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 #28979)
10   --> $DIR/utf8_idents.rs:14: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 #28979)
18   --> $DIR/utf8_idents.rs:18: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 #28979)
26   --> $DIR/utf8_idents.rs:22: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 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0658`.