about summary refs log tree commit diff
path: root/tests/ui/associated-types/issue-91234.rs
blob: 4828155ba394734c7e044edfa4eefddb867da091 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ check-pass

struct Struct;

trait Trait {
    type Type;
}

enum Enum<'a> where &'a Struct: Trait {
    Variant(<&'a Struct as Trait>::Type)
}

fn main() {}