blob: 5da910d9410528b1cedcf9cf69dfc5bdb5c685a7 [file] [log] [blame]
// "Create Constructor" "true"
class Test {
public void t() {
new Inner("a"){};
}
class Inner {
public Inner(String a) {
<caret><selection></selection>
}
}
}