mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
210 B
Rust
13 lines
210 B
Rust
#![deny(unused)]
|
|
|
|
struct F; //~ ERROR struct `F` is never constructed
|
|
struct B; //~ ERROR struct `B` is never constructed
|
|
|
|
enum E {
|
|
//~^ ERROR enum `E` is never used
|
|
Foo(F),
|
|
Bar(B),
|
|
}
|
|
|
|
fn main() {}
|