mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
15 lines
224 B
Rust
15 lines
224 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
|
||
|
};
|
||
|
}
|