mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-14 07:02:51 +07:00
16 lines
285 B
Java
16 lines
285 B
Java
package codeInsight.completion.variables.locals;
|
|
|
|
public class TestSource5 {
|
|
|
|
public static class inner{
|
|
static int aaa = 0;
|
|
public void foo(){
|
|
int abc = 0;
|
|
}
|
|
|
|
static class Inner1{
|
|
static int sbe = a<caret>
|
|
}
|
|
}
|
|
}
|