mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
[java] inline local: treatment for anonymous class's arguments (IDEA-279485)
GitOrigin-RevId: 5493352d47e8d6fe7a60495dddb7f23876f90db9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ad3c351ee5
commit
f1ff0aa821
@@ -0,0 +1,10 @@
|
||||
class X {
|
||||
void use() {
|
||||
int x = 2;
|
||||
new A(x, x = 3, <caret>x) {};
|
||||
}
|
||||
|
||||
static class A {
|
||||
A(int x1, int x2, int x3) {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user