rust/tests/ui/issues/issue-24424.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
186 B
Rust
Raw Normal View History

trait Trait1<'l0, T0> {}
trait Trait0<'l0> {}
impl <'l0, 'l1, T0> Trait1<'l0, T0> for bool where T0 : Trait0<'l0>, T0 : Trait0<'l1> {}
2019-10-30 00:28:39 +00:00
//~^ ERROR type annotations needed
fn main() {}