mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
make static: process anonymous class usages (EA-21912 - assert: MakeClassStaticProcessor.changeExternalUsage)
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
public class A {
|
||||
class <caret>B {
|
||||
B() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class C {
|
||||
void foo() {
|
||||
new A().new B() {
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
}.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user