rust/tests/crashes/135845.rs

7 lines
104 B
Rust

//@ known-bug: #135845
struct S<'a, T: ?Sized>(&'a T);
fn b<'a>() -> S<'static, _> {
S::<'a>(&0)
}