rust/tests/ui/associated-types/issue-91234.rs

14 lines
161 B
Rust

//@ check-pass
struct Struct;
trait Trait {
type Type;
}
enum Enum<'a> where &'a Struct: Trait {
Variant(<&'a Struct as Trait>::Type)
}
fn main() {}