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