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