rust/src/test/ui/error-codes/E0490.rs
Matthew Jasper f9f3063cfa Update tests
2020-05-22 18:03:08 +01:00

8 lines
110 B
Rust

fn f<'a, 'b>(y: &'b ()) {
let x: &'a _ = &y;
//~^ E0490
//~| E0495
//~| E0495
}
fn main() {}