rust/tests/ui/union/union-lint-dead-code.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
351 B
Plaintext
Raw Normal View History

error: field `b` is never read
--> $DIR/union-lint-dead-code.rs:5:5
2018-08-08 12:28:26 +00:00
|
LL | union Foo {
| --- field in this union
LL | x: usize,
2019-03-09 12:03:44 +00:00
LL | b: bool,
2022-06-22 18:33:59 +00:00
| ^
2018-08-08 12:28:26 +00:00
|
2020-01-22 23:57:38 +00:00
note: the lint level is defined here
--> $DIR/union-lint-dead-code.rs:1:9
2018-08-08 12:28:26 +00:00
|
LL | #![deny(dead_code)]
| ^^^^^^^^^
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00