2023-07-27 22:50:40 +00:00
|
|
|
// 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`
|
2024-03-18 16:03:18 +00:00
|
|
|
//~| ERROR expected generic lifetime parameter, found `'static`
|
2023-07-27 22:50:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|