9 lines
202 B
Rust
9 lines
202 B
Rust
// This test is to ensure that the raw underscore lifetime won't emit two duplicate errors.
|
|
// See issue #143152
|
|
|
|
//@ edition: 2021
|
|
|
|
fn f<'r#_>(){}
|
|
//~^ ERROR `_` cannot be a raw lifetime
|
|
|
|
fn main() {}
|