mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
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() {}
|
||
|
}
|