rust/tests/source/type-alias-where-clauses.rs
2024-09-12 10:27:02 -05:00

20 lines
185 B
XML

type Foo
where
A: B,
C: D,
= E;
type Foo
where
A: B,
C: D,
= E
where
F: G,
H: I;
type Foo
= E
where
F: G,
H: I;