mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
194 B
Rust
11 lines
194 B
Rust
enum Foo {
|
|
A = 1i64,
|
|
//~^ ERROR mismatched types
|
|
//~| expected `isize`, found `i64`
|
|
B = 2u8
|
|
//~^ ERROR mismatched types
|
|
//~| expected `isize`, found `u8`
|
|
}
|
|
|
|
fn main() {}
|