mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +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 {
|
||||
static class B {
|
||||
public B() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class C {
|
||||
void foo() {
|
||||
new A().new B() {
|
||||
public String toString() {
|
||||
return super.toString();
|
||||
}
|
||||
}.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user