]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-non-camel-case-types.stderr
Move parse-fail tests to UI
[rust.git] / src / test / ui / lint / lint-non-camel-case-types.stderr
1 error: type `ONE_TWO_THREE` should have a camel case name such as `OneTwoThree`
2   --> $DIR/lint-non-camel-case-types.rs:14:1
3    |
4 LL | struct ONE_TWO_THREE;
5    | ^^^^^^^^^^^^^^^^^^^^^
6    |
7 note: lint level defined here
8   --> $DIR/lint-non-camel-case-types.rs:11:11
9    |
10 LL | #![forbid(non_camel_case_types)]
11    |           ^^^^^^^^^^^^^^^^^^^^
12
13 error: type `foo` should have a camel case name such as `Foo`
14   --> $DIR/lint-non-camel-case-types.rs:17:1
15    |
16 LL | / struct foo { //~ ERROR type `foo` should have a camel case name such as `Foo`
17 LL | |     bar: isize,
18 LL | | }
19    | |_^
20
21 error: type `foo2` should have a camel case name such as `Foo2`
22   --> $DIR/lint-non-camel-case-types.rs:21:1
23    |
24 LL | / enum foo2 { //~ ERROR type `foo2` should have a camel case name such as `Foo2`
25 LL | |     Bar
26 LL | | }
27    | |_^
28
29 error: type `foo3` should have a camel case name such as `Foo3`
30   --> $DIR/lint-non-camel-case-types.rs:25:1
31    |
32 LL | / struct foo3 { //~ ERROR type `foo3` should have a camel case name such as `Foo3`
33 LL | |     bar: isize
34 LL | | }
35    | |_^
36
37 error: type `foo4` should have a camel case name such as `Foo4`
38   --> $DIR/lint-non-camel-case-types.rs:29:1
39    |
40 LL | type foo4 = isize; //~ ERROR type `foo4` should have a camel case name such as `Foo4`
41    | ^^^^^^^^^^^^^^^^^^
42
43 error: variant `bar` should have a camel case name such as `Bar`
44   --> $DIR/lint-non-camel-case-types.rs:32:5
45    |
46 LL |     bar //~ ERROR variant `bar` should have a camel case name such as `Bar`
47    |     ^^^
48
49 error: trait `foo6` should have a camel case name such as `Foo6`
50   --> $DIR/lint-non-camel-case-types.rs:35:1
51    |
52 LL | / trait foo6 { //~ ERROR trait `foo6` should have a camel case name such as `Foo6`
53 LL | |     fn dummy(&self) { }
54 LL | | }
55    | |_^
56
57 error: type parameter `ty` should have a camel case name such as `Ty`
58   --> $DIR/lint-non-camel-case-types.rs:39:6
59    |
60 LL | fn f<ty>(_: ty) {} //~ ERROR type parameter `ty` should have a camel case name such as `Ty`
61    |      ^^
62
63 error: type `X86__64` should have a camel case name such as `X86_64`
64   --> $DIR/lint-non-camel-case-types.rs:48:1
65    |
66 LL | struct X86__64; //~ ERROR type `X86__64` should have a camel case name such as `X86_64`
67    | ^^^^^^^^^^^^^^^
68
69 error: type `Abc_123` should have a camel case name such as `Abc123`
70   --> $DIR/lint-non-camel-case-types.rs:50:1
71    |
72 LL | struct Abc_123; //~ ERROR type `Abc_123` should have a camel case name such as `Abc123`
73    | ^^^^^^^^^^^^^^^
74
75 error: type `A1_b2_c3` should have a camel case name such as `A1B2C3`
76   --> $DIR/lint-non-camel-case-types.rs:52:1
77    |
78 LL | struct A1_b2_c3; //~ ERROR type `A1_b2_c3` should have a camel case name such as `A1B2C3`
79    | ^^^^^^^^^^^^^^^^
80
81 error: aborting due to 11 previous errors
82