mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
13 lines
211 B
Rust
13 lines
211 B
Rust
#![forbid(dead_code)]
|
|
|
|
#[derive(Debug)]
|
|
pub struct Whatever { //~ ERROR struct `Whatever` is never constructed
|
|
pub field0: (),
|
|
field1: (),
|
|
field2: (),
|
|
field3: (),
|
|
field4: (),
|
|
}
|
|
|
|
fn main() {}
|