| 
 | 1 | +error: type `χa` should have an upper camel case name  | 
 | 2 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:15:8  | 
 | 3 | +   |  | 
 | 4 | +LL | struct χa;  | 
 | 5 | +   |        ^^ help: convert the identifier to upper camel case: `Χa`  | 
 | 6 | +   |  | 
 | 7 | +note: the lint level is defined here  | 
 | 8 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:3:11  | 
 | 9 | +   |  | 
 | 10 | +LL | #![forbid(non_camel_case_types)]  | 
 | 11 | +   |           ^^^^^^^^^^^^^^^^^^^^  | 
 | 12 | + | 
 | 13 | +error: type `__χa` should have an upper camel case name  | 
 | 14 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:23:8  | 
 | 15 | +   |  | 
 | 16 | +LL | struct __χa;  | 
 | 17 | +   |        ^^^^ help: convert the identifier to upper camel case: `Χa`  | 
 | 18 | + | 
 | 19 | +error: type `对__否` should have an upper camel case name  | 
 | 20 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:28:8  | 
 | 21 | +   |  | 
 | 22 | +LL | struct 对__否;  | 
 | 23 | +   |        ^^^^^^ help: convert the identifier to upper camel case: `对_否`  | 
 | 24 | + | 
 | 25 | +error: type `ヒ__χ` should have an upper camel case name  | 
 | 26 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:31:8  | 
 | 27 | +   |  | 
 | 28 | +LL | struct ヒ__χ;  | 
 | 29 | +   |        ^^^^^ help: convert the identifier to upper camel case: `ヒΧ`  | 
 | 30 | + | 
 | 31 | +error: type `Hello_你好` should have an upper camel case name  | 
 | 32 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:37:8  | 
 | 33 | +   |  | 
 | 34 | +LL | struct Hello_你好;  | 
 | 35 | +   |        ^^^^^^^^^^ help: convert the identifier to upper camel case: `Hello你好`  | 
 | 36 | + | 
 | 37 | +error: type `Hello_World` should have an upper camel case name  | 
 | 38 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:40:8  | 
 | 39 | +   |  | 
 | 40 | +LL | struct Hello_World;  | 
 | 41 | +   |        ^^^^^^^^^^^ help: convert the identifier to upper camel case: `HelloWorld`  | 
 | 42 | + | 
 | 43 | +error: type `你_ӟ` should have an upper camel case name  | 
 | 44 | +  --> $DIR/lint-nonstandard-style-unicode-1.rs:43:8  | 
 | 45 | +   |  | 
 | 46 | +LL | struct 你_ӟ;  | 
 | 47 | +   |        ^^^^ help: convert the identifier to upper camel case: `你Ӟ`  | 
 | 48 | + | 
 | 49 | +error: aborting due to 7 previous errors  | 
 | 50 | + | 
0 commit comments