summary refs log tree commit diff
path: root/src/test/ui/issue-37515.stderr
blob: 68e983f23b03459c7d4c7b1869853912a6c24127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
warning: type alias is never used: `Z`
  --> $DIR/issue-37515.rs:14:1
   |
LL | type Z = for<'x> Send;
   | ^^^^^^^^^^^^^^^^^^^^^^
   |
note: lint level defined here
  --> $DIR/issue-37515.rs:12:9
   |
LL | #![warn(unused)]
   |         ^^^^^^
   = note: #[warn(dead_code)] implied by #[warn(unused)]

error: compilation successful
  --> $DIR/issue-37515.rs:18:1
   |
LL | / fn main() { //~ ERROR compilation successful
LL | | }
   | |_^

error: aborting due to previous error