mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
13 lines
257 B
Java
13 lines
257 B
Java
// "Create method 'getNext' in 'InnerClass in MainClass'" "true-preview"
|
|
public class MainClass {
|
|
void foo() {
|
|
int counter = InnerClass.getNext();
|
|
}
|
|
|
|
private class InnerClass {
|
|
|
|
public static int getNext() {
|
|
return 0;
|
|
}
|
|
}
|
|
} |