rust/tests/ui/unconstrained-ref.rs
2023-01-11 09:32:08 +00:00

8 lines
121 B
Rust

struct S<'a, T:'a> {
o: &'a Option<T>
}
fn main() {
S { o: &None }; //~ ERROR type annotations needed [E0282]
}