mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
make static: fix inner class check (IDEA-166983)
This commit is contained in:
@@ -8,4 +8,13 @@ class P {
|
||||
bazz(k);
|
||||
bazz(k);
|
||||
}
|
||||
|
||||
void m(int k) {
|
||||
new Runnable() {
|
||||
public void run() {}
|
||||
void mm() {
|
||||
bazz(k);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -8,4 +8,13 @@ class P {
|
||||
bazz(k);
|
||||
bazz(k);
|
||||
}
|
||||
|
||||
void m(int k) {
|
||||
new Runnable() {
|
||||
public void run() {}
|
||||
void mm() {
|
||||
bazz(k);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user