rustc/tests/ui/unconstrained-ref.rs
2023-08-02 10:33:26 +02: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]
}