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