]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/dead-code/type-alias.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / lint / dead-code / type-alias.stderr
1 error: type alias `Unused` is never used
2 --> $DIR/type-alias.rs:4:1
3 |
4 LL | type Unused = u8;
5 | ^^^^^^^^^^^^^^^^^
6 |
7 note: the lint level is defined here
8 --> $DIR/type-alias.rs:1:9
9 |
10 LL | #![deny(dead_code)]
11 | ^^^^^^^^^
12
13 error: aborting due to previous error
14