blob: a6e5f70fdefa63dc66b816a3316a41d0e7d77ca1 [file] [log] [blame] [edit]
#![crate_type="lib"]
enum Enum {
//~^ ERROR `#[repr(inttype)]` must be specified
Unit = 1,
Tuple() = 2,
Struct{} = 3,
}