mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-21 11:18:11 +07:00
19 lines
372 B
Java
19 lines
372 B
Java
package codeInsight.completion.variables.locals;
|
|
|
|
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: igork
|
|
* Date: Nov 25, 2002
|
|
* Time: 3:10:08 PM
|
|
* To change this template use Options | File Templates.
|
|
*/
|
|
public class TestSource4 {
|
|
int aaa = 0;
|
|
public static void foo(){
|
|
final int abc = 0;
|
|
class Inner1{
|
|
int sbe=abc<caret>
|
|
}
|
|
}
|
|
}
|