mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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) {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user