10 lines
123 B
Rust
10 lines
123 B
Rust
//@ known-bug: #124083
|
|
|
|
struct Outest(&'a ());
|
|
|
|
fn make() -> Outest {}
|
|
|
|
fn main() {
|
|
if let Outest("foo") = make() {}
|
|
}
|