about summary refs log tree commit diff
path: root/tests/ui/underscore-lifetime/raw-underscore-lifetime.rs
blob: 874b3d2c48dbb21328506d5a4c3328afe356298f (plain)
1
2
3
4
5
6
7
8
9
// 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() {}