mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-08 21:12:07 +07:00
13 lines
266 B
Java
13 lines
266 B
Java
package codeInsight.completion.variables.locals;
|
|
|
|
public class TestSource9 {
|
|
private int aField;
|
|
public void foo() {
|
|
Runnable r = new Runnable() {
|
|
public void run() {
|
|
int x = aField<caret>;
|
|
}
|
|
};
|
|
}
|
|
}
|