blob: 9a90eda644daf584feaee2f67b814865e588d3c6 [file]
abstract class I {
void call();
}
class C implements I {
void call([int x]) {}
}
main() {}