mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-05 19:58:32 +00:00
9 lines
127 B
Rust
9 lines
127 B
Rust
![]() |
#![crate_type="lib"]
|
||
|
|
||
|
enum Enum {
|
||
|
//~^ ERROR `#[repr(inttype)]` must be specified
|
||
|
Unit = 1,
|
||
|
Tuple() = 2,
|
||
|
Struct{} = 3,
|
||
|
}
|