mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
inline constant: decode with this access from initial expr (IDEA-174568)
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
|
||||
class Foobar {
|
||||
void m(Foobar _local) {
|
||||
class Local {
|
||||
protected Foobar _field = _local;
|
||||
{
|
||||
System.out.println(this.<caret>_field);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
class Foobar {
|
||||
void m(Foobar _local) {
|
||||
class Local {
|
||||
{
|
||||
System.out.println(_local);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user