]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/dead-code/type-alias.stderr
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / ui / lint / dead-code / type-alias.stderr
1 error: type alias `Unused` is never used
2   --> $DIR/type-alias.rs:4:6
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