rust/tests/ui/parser/issues/issue-67146-negative-outlives-bound-syntactic-fail.fixed

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
409 B
Rust
Raw Normal View History

// 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>() {}
//~^ ERROR negative bounds are not supported
pub fn f2<'a, T: Ord>() {}
//~^ ERROR negative bounds are not supported
pub fn f3<'a, T: Ord>() {}
//~^ ERROR negative bounds are not supported