summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/lint-non-camel-case-types.stderr
blob: 875380b5dabc68b53e6754c35a9ad5a3d382589d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
error: type `ONE_TWO_THREE` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:4:8
   |
LL | struct ONE_TWO_THREE;
   |        ^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `OneTwoThree`
   |
note: the lint level is defined here
  --> $DIR/lint-non-camel-case-types.rs:1:11
   |
LL | #![forbid(non_camel_case_types)]
   |           ^^^^^^^^^^^^^^^^^^^^

error: type `foo` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:7:8
   |
LL | struct foo {
   |        ^^^ help: convert the identifier to upper camel case (notice the capitalization): `Foo`

error: type `foo2` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:11:6
   |
LL | enum foo2 {
   |      ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Foo2`

error: type `foo3` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:15:8
   |
LL | struct foo3 {
   |        ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Foo3`

error: type `foo4` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:19:6
   |
LL | type foo4 = isize;
   |      ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Foo4`

error: variant `bar` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:22:5
   |
LL |     bar
   |     ^^^ help: convert the identifier to upper camel case: `Bar`

error: trait `foo6` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:25:7
   |
LL | trait foo6 {
   |       ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Foo6`

error: associated type `foo7` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:26:10
   |
LL |     type foo7;
   |          ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Foo7`

error: type parameter `ty` should have an upper camel case name
  --> $DIR/lint-non-camel-case-types.rs:30:6
   |
LL | fn f<ty>(_: ty) {}
   |      ^^ help: convert the identifier to upper camel case: `Ty`

error: aborting due to 9 previous errors