12 lines
266 B
Rust
12 lines
266 B
Rust
// 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`
|
|
//~| ERROR expected generic lifetime parameter, found `'static`
|
|
}
|
|
|
|
fn main() {}
|