mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 17:56:55 +07:00
GitOrigin-RevId: 5b961c4baf967175428cb594e0f6d534d9824eb3
10 lines
93 B
Java
10 lines
93 B
Java
class C extends B {
|
|
|
|
C() {
|
|
int c = 1;
|
|
super(c);
|
|
}
|
|
}
|
|
class B {
|
|
B(int i) {}
|
|
} |