rust/tests/ui/impl-trait/in-trait/bad-item-bound-within-rpitit-2.rs
2023-07-27 22:50:40 +00:00

12 lines
247 B
Rust

// issue: 114146
#![feature(return_position_impl_trait_in_trait)]
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() {}