mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
7 lines
147 B
Java
7 lines
147 B
Java
public class TestSubclass extends Test {
|
|
int c;
|
|
public TestSubclass(int a, int b, int c) {
|
|
super(a, b);
|
|
this.c = c;
|
|
}
|
|
} |