Files
rust/tests/ui/impl-trait/in-trait/unconstrained-lt.rs

15 lines
292 B
Rust
Raw Normal View History

trait Foo {
fn test() -> impl Sized;
}
impl<'a, T> Foo for T {
//~^ ERROR the lifetime parameter `'a` is not constrained by the impl trait, self type, or predicates
fn test() -> &'a () {
//~^ WARN: does not match trait method signature
&()
}
}
fn main() {}