mirror of https://github.com/rust-lang/rust
51 lines
968 B
Plaintext
51 lines
968 B
Plaintext
error: field `b` is never read
|
|
--> $DIR/offset-of.rs:7:5
|
|
|
|
|
LL | struct Alpha {
|
|
| ----- field in this struct
|
|
LL | a: (),
|
|
LL | b: (),
|
|
| ^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/offset-of.rs:1:9
|
|
|
|
|
LL | #![deny(dead_code)]
|
|
| ^^^^^^^^^
|
|
|
|
error: field `a` is never read
|
|
--> $DIR/offset-of.rs:12:5
|
|
|
|
|
LL | struct Beta {
|
|
| ---- field in this struct
|
|
LL | a: (),
|
|
| ^
|
|
|
|
error: field `a` is never read
|
|
--> $DIR/offset-of.rs:17:5
|
|
|
|
|
LL | struct Gamma {
|
|
| ----- field in this struct
|
|
LL | a: (),
|
|
| ^
|
|
|
|
error: field `b` is never read
|
|
--> $DIR/offset-of.rs:23:5
|
|
|
|
|
LL | struct Delta {
|
|
| ----- field in this struct
|
|
LL | a: (),
|
|
LL | b: (),
|
|
| ^
|
|
|
|
error: field `a` is never read
|
|
--> $DIR/offset-of.rs:34:5
|
|
|
|
|
LL | struct Project<T: Trait> {
|
|
| ------- field in this struct
|
|
LL | a: u8,
|
|
| ^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|