• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![crate_type="lib"]
2 
3 enum Enum {
4 //~^ ERROR `#[repr(inttype)]` must be specified
5   Unit = 1,
6   Tuple() = 2,
7   Struct{} = 3,
8 }
9