blob: 075e4259ce70cfeb36bc1ae494f3a71197d7f5b5 [file] [log] [blame]
library test;
abstract class C<E> {
static int _compareAny(a, b) {}
static void sort2<E>(C<E> a, int compare(E a, E b)) {}
void sort([int Function(E a, E b)? compare]) {}
}
main() {}