blob: 5598b5fdda46cfe2d057a519da7ee69739441835 [file] [log] [blame]
class PrivateInitUser {
public void method() {
new WithPrivateInit(new CustomType("a"));
new WithPrivateInit(new CustomType("b"));
}
public static class CustomType {
public CustomType(String s) {
}
}
}
class <caret>WithPrivateInit {
public WithPrivateInit(PrivateInitUser.CustomType customType) {
privateMethod(customType);
}
private void privateMethod(PrivateInitUser.CustomType customType) {
}
}