mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 00:36:13 +07:00
GitOrigin-RevId: bcb0a09fd5d3e92957b4543880c5ef4640eb4d8f
10 lines
200 B
Java
10 lines
200 B
Java
// "Create method 'getNext' in 'InnerClass in MainClass'" "true-preview"
|
|
public class MainClass {
|
|
void foo() {
|
|
int counter = InnerClass.<caret>getNext();
|
|
}
|
|
|
|
private class InnerClass {
|
|
|
|
}
|
|
} |