blob: 14b1ebea8db23a4bac3e244de6463fc404de199f [file] [log] [blame] [edit]
// issue: 114146
trait Foo {
fn bar<'other: 'a>() -> impl Sized + 'a {}
//~^ ERROR use of undeclared lifetime name `'a`
//~| ERROR use of undeclared lifetime name `'a`
}
fn main() {}