mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 14:25:04 +07:00
java highlighting tests moved to community
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
class m {
|
||||
int i;
|
||||
void f() {
|
||||
int r = 0;
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
int k = <error descr="Variable 'r' is accessed from within inner class. Needs to be declared final.">r</error>;
|
||||
int ii = i;
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user