mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
moving tests
This commit is contained in:
+20
@@ -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