rust/src/test/ui/utf8_idents.stderr

48 lines
1.6 KiB
Plaintext
Raw Normal View History

2019-04-11 01:40:12 +02:00
error[E0658]: non-ascii idents are not fully supported
--> $DIR/utf8_idents.rs:4:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 13:03:44 +01:00
LL | 'β,
2018-08-08 14:28:26 +02:00
| ^^
|
2020-02-07 13:07:02 +01:00
= note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
= help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
2018-08-08 14:28:26 +02:00
2019-04-11 01:40:12 +02:00
error[E0658]: non-ascii idents are not fully supported
--> $DIR/utf8_idents.rs:5:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 13:03:44 +01:00
LL | γ
2018-08-08 14:28:26 +02:00
| ^
|
2020-02-07 13:07:02 +01:00
= note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
= help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
2018-08-08 14:28:26 +02:00
2019-04-11 01:40:12 +02:00
error[E0658]: non-ascii idents are not fully supported
--> $DIR/utf8_idents.rs:10:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 13:03:44 +01:00
LL | δ: usize
2018-08-08 14:28:26 +02:00
| ^
|
2020-02-07 13:07:02 +01:00
= note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
= help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
2018-08-08 14:28:26 +02:00
2019-04-11 01:40:12 +02:00
error[E0658]: non-ascii idents are not fully supported
--> $DIR/utf8_idents.rs:14:9
2018-08-08 14:28:26 +02:00
|
2019-03-09 13:03:44 +01:00
LL | let α = 0.00001f64;
2018-08-08 14:28:26 +02:00
| ^
|
2020-02-07 13:07:02 +01:00
= note: see issue #55467 <https://github.com/rust-lang/rust/issues/55467> for more information
= help: add `#![feature(non_ascii_idents)]` to the crate attributes to enable
2018-08-08 14:28:26 +02:00
warning: type parameter `γ` should have an upper camel case name
--> $DIR/utf8_idents.rs:5:5
|
2019-03-09 13:03:44 +01:00
LL | γ
| ^ help: convert the identifier to upper camel case: `Γ`
|
= note: `#[warn(non_camel_case_types)]` on by default
error: aborting due to 4 previous errors; 1 warning emitted
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0658`.