mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
349 B
Plaintext
18 lines
349 B
Plaintext
error: field `b` is never read
|
|
--> $DIR/union-lint-dead-code.rs:8:5
|
|
|
|
|
LL | union Foo {
|
|
| --- field in this union
|
|
LL | x: usize,
|
|
LL | b: bool,
|
|
| ^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/union-lint-dead-code.rs:4:9
|
|
|
|
|
LL | #![deny(dead_code)]
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|