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