mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
18 lines
620 B
Rust
18 lines
620 B
Rust
// run-rustfix
|
|
|
|
// In this regression test for #67146, we check that the
|
|
// negative outlives bound `!'a` is rejected by the parser.
|
|
// This regression was first introduced in PR #57364.
|
|
|
|
fn main() {}
|
|
|
|
pub fn f1<T: 'static>() {}
|
|
//~^ ERROR negative bounds are not supported
|
|
//~| ERROR `!` may only modify trait bounds, not lifetime bound
|
|
pub fn f2<'a, T: Ord + 'a>() {}
|
|
//~^ ERROR negative bounds are not supported
|
|
//~| ERROR `!` may only modify trait bounds, not lifetime bound
|
|
pub fn f3<'a, T: 'a + Ord>() {}
|
|
//~^ ERROR negative bounds are not supported
|
|
//~| ERROR `!` may only modify trait bounds, not lifetime bound
|