blob: ce9d389034652644ae56ec7cddf386032c3feedc [file] [log] [blame]
// @dart = 2.9
abstract class I {
void call();
}
class C implements I {
void call([int x]) {}
}
main() {}