blob: df90dfc65ed54f3757daa8849d39a96e0a01dc6e [file] [log] [blame]
public class TestSubclass extends Test {
int b;
public TestSubclass(int a, int b) {
super(a);
this.b = b;
}
}