summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/traits18.rs
blob: 63319dd2daa78314f3a57e67f96a42d1b3e881db (plain)
1
2
3
4
5
trait Foo<'a> {}

trait Bar {
    type Item: for<'a> Foo<'a>;
}