mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-14 00:04:46 +00:00
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() {}
|