mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 04:27:40 +07:00
eb3bf098b3
GitOrigin-RevId: bcb0a09fd5d3e92957b4543880c5ef4640eb4d8f
10 lines
199 B
Java
10 lines
199 B
Java
// "Create property 'next' in 'InnerClass in MainClass'" "true-preview"
|
|
public class MainClass {
|
|
void foo() {
|
|
int counter = InnerClass.<caret>getNext();
|
|
}
|
|
|
|
private class InnerClass {
|
|
|
|
}
|
|
} |