mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-26 11:27:45 +00:00
10 lines
202 B
Rust
10 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() {}
|