mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
237 B
Rust
12 lines
237 B
Rust
#![forbid(dead_code)]
|
|
|
|
#[derive(Debug)]
|
|
pub struct Whatever {
|
|
pub field0: (),
|
|
field1: (), //~ ERROR fields `field1`, `field2`, `field3`, and `field4` are never read
|
|
field2: (),
|
|
field3: (),
|
|
field4: (),
|
|
}
|
|
|
|
fn main() {}
|