]> git.lizzy.rs Git - rust.git/blob - src/test/ui/utf8_idents.stderr
Rollup merge of #73719 - davidtwco:issue-72509-emitter-column-width, r=estebank
[rust.git] / src / test / ui / utf8_idents.stderr
1 error[E0658]: non-ascii idents are not fully supported
2   --> $DIR/utf8_idents.rs:4:5
3    |
4 LL |     'β,
5    |     ^^
6    |
7    = note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
8    = help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
9
10 error[E0658]: non-ascii idents are not fully supported
11   --> $DIR/utf8_idents.rs:5:5
12    |
13 LL |     γ
14    |     ^
15    |
16    = note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
17    = help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
18
19 error[E0658]: non-ascii idents are not fully supported
20   --> $DIR/utf8_idents.rs:10:5
21    |
22 LL |     δ: usize
23    |     ^
24    |
25    = note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
26    = help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
27
28 error[E0658]: non-ascii idents are not fully supported
29   --> $DIR/utf8_idents.rs:14:9
30    |
31 LL |     let α = 0.00001f64;
32    |         ^
33    |
34    = note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
35    = help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
36
37 warning: type parameter `γ` should have an upper camel case name
38   --> $DIR/utf8_idents.rs:5:5
39    |
40 LL |     γ
41    |     ^ help: convert the identifier to upper camel case: `Γ`
42    |
43    = note: `#[warn(non_camel_case_types)]` on by default
44
45 error: aborting due to 4 previous errors; 1 warning emitted
46
47 For more information about this error, try `rustc --explain E0658`.