mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +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
|
||
|
};
|
||
|
}
|