]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/utf8_idents.stderr
Rollup merge of #58306 - GuillaumeGomez:crate-browser-history, r=QuietMisdreavus
[rust.git] / src / test / ui / utf8_idents.stderr
index 4279ed78d39f9d9d95964fb7d80ec2f5d5a0e97c..52fb607af5b2573359ca9bb0e76a1168811a56ce 100644 (file)
@@ -1,35 +1,43 @@
-error[E0658]: non-ascii idents are not fully supported. (see issue #28979)
-  --> $DIR/utf8_idents.rs:4:5
+error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
+  --> $DIR/utf8_idents.rs:2:5
    |
 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 #28979)
-  --> $DIR/utf8_idents.rs:5:5
+error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
+  --> $DIR/utf8_idents.rs:3:5
    |
 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 #28979)
-  --> $DIR/utf8_idents.rs:9:5
+error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
+  --> $DIR/utf8_idents.rs:8:5
    |
 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 #28979)
-  --> $DIR/utf8_idents.rs:13:9
+error[E0658]: non-ascii idents are not fully supported. (see issue #55467)
+  --> $DIR/utf8_idents.rs:12:9
    |
 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
+
 error: aborting due to 4 previous errors
 
 For more information about this error, try `rustc --explain E0658`.