mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
222 B
Rust
15 lines
222 B
Rust
// check-fail
|
|
// run-rustfix
|
|
|
|
enum FakeResult<T> {
|
|
Ok(T)
|
|
}
|
|
|
|
fn main() {
|
|
let _x = if true {
|
|
FakeResult::Ok(FakeResult::Ok(()))
|
|
} else {
|
|
FakeResult::Ok(FakeResult::Ok(())) //~ERROR E0308
|
|
};
|
|
}
|