mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
235 B
Rust
14 lines
235 B
Rust
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 () {
|
|
&()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|