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