rust/src/test/ui/utf8_idents.stderr

44 lines
1.5 KiB
Plaintext
Raw Normal View History

error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
--> $DIR/utf8_idents.rs:2:5
2018-08-08 14:28:26 +02:00
|
LL | 'β, //~ ERROR non-ascii idents are not fully supported
| ^^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
--> $DIR/utf8_idents.rs:3:5
2018-08-08 14:28:26 +02:00
|
LL | γ //~ ERROR non-ascii idents are not fully supported
| ^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
--> $DIR/utf8_idents.rs:8:5
2018-08-08 14:28:26 +02:00
|
LL | δ: usize //~ ERROR non-ascii idents are not fully supported
| ^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
--> $DIR/utf8_idents.rs:12:9
2018-08-08 14:28:26 +02:00
|
LL | let α = 0.00001f64; //~ ERROR non-ascii idents are not fully supported
| ^
|
= help: add #![feature(non_ascii_idents)] to the crate attributes to enable
warning: type parameter `γ` should have an upper camel case name
--> $DIR/utf8_idents.rs:3:5
|
LL | γ //~ ERROR non-ascii idents are not fully supported
| ^ help: convert the identifier to upper camel case: `Γ`
|
= note: #[warn(non_camel_case_types)] on by default
2018-08-08 14:28:26 +02:00
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0658`.