blob: 7ca164deafdbe5533c095bab605287e8e3c80cc1 [file] [log] [blame]
// @dart = 2.9
typedef A<T>(T p);
typedef B<S extends A<S>>(S p);
B b;
main() {}