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