blob: 12e4d545ab1d1ad8a3dcb1573d50d2acabdf84dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: associated type `typ` should have an upper camel case name
--> $DIR/style.rs:8:10
|
LL | type typ = ();
| ^^^ help: convert the identifier to upper camel case: `Typ`
|
note: the lint level is defined here
--> $DIR/style.rs:3:9
|
LL | #![deny(non_camel_case_types)]
| ^^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error
|