summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-91234.rs
blob: 2f6c2d3aebd0a85b15d4b6ea3734be89aaeb671b (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() {}