blob: 928adb6c3ad5873418adf4b7f91bed8c9c41d143 [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 compare(E a, E b)]) {}
}
main() {}