rust/tests/ui/empty_enum.rs

12 lines
221 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
2017-02-04 23:59:39 -06:00
#![allow(dead_code)]
#![deny(empty_enum)]
enum Empty {} //~ ERROR enum with no variants
//~^ HELP consider using the uninhabited type `!` or a wrapper around it
fn main() {
}