blob: bc1d3b56fa62560bb87d2c068b3822d99a80503e [file] [log] [blame]
// @dart = 2.6
typedef G<X> = void Function();
class A<X extends G<A<Y, X>>, Y extends G<A<X, Y>>> {}
main() {}