blob: 6beff18f7b2c21deee32f4449f1afa383ada96f5 [file] [log] [blame]
// @dart = 2.6
main() {}
typedef Bar<T> = void Function(Baz<T>);
typedef Baz<T> = void Function(Foo<T>);
typedef Foo<T> = void Function(Bar<T>);