]> git.proxmox.com Git - rustc.git/blob - src/test/ui/union/union-fields-1.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / union / union-fields-1.stderr
1 error: field is never read: `c`
2 --> $DIR/union-fields-1.rs:6:5
3 |
4 LL | c: u8,
5 | ^^^^^
6 |
7 note: lint level defined here
8 --> $DIR/union-fields-1.rs:1:9
9 |
10 LL | #![deny(dead_code)]
11 | ^^^^^^^^^
12
13 error: field is never read: `a`
14 --> $DIR/union-fields-1.rs:9:5
15 |
16 LL | a: u8,
17 | ^^^^^
18
19 error: field is never read: `a`
20 --> $DIR/union-fields-1.rs:13:20
21 |
22 LL | union NoDropLike { a: u8 }
23 | ^^^^^
24
25 error: field is never read: `c`
26 --> $DIR/union-fields-1.rs:18:5
27 |
28 LL | c: u8,
29 | ^^^^^
30
31 error: aborting due to 4 previous errors
32