rust/tests/crashes/121799.rs

12 lines
98 B
Rust

//@ known-bug: #121799
struct S {
_: str
}
fn func(a: S)
{
let _x = a.f;
}
fn main() {}