mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-14 07:02:51 +07:00
13 lines
262 B
Java
13 lines
262 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 = aF<caret>;
|
|
}
|
|
};
|
|
}
|
|
}
|