blob: af1e25cc7676a563390f92427c925780ad6e5495 [file] [log] [blame]
abstract class A {
late int ;
x;
}
class _B implements A {
int x = 3;
}
main() {}