mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-22 11:13:36 +07:00
eb3bf098b3
GitOrigin-RevId: bcb0a09fd5d3e92957b4543880c5ef4640eb4d8f
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;
|
|
}
|
|
}
|
|
} |