blob: 3aed02cd4492e10ad0159b374d175601369a68a1 [file] [log] [blame]
// "Create Constructor" "true"
class Test extends A{
public Test(String a) {
<selection>super(a);</selection>
}
public void t() {
new Test("a"){};
}
}
class A {
A(String s){}
}