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