make static: fix inner class check (IDEA-166983)

This commit is contained in:
Anna Kozlova
2017-01-23 16:20:58 +03:00
parent 3a219b6c01
commit edac6e4874
3 changed files with 21 additions and 2 deletions

View File

@@ -8,4 +8,13 @@ class P {
bazz(k);
bazz(k);
}
void m(int k) {
new Runnable() {
public void run() {}
void mm() {
bazz(k);
}
};
}
}

View File

@@ -8,4 +8,13 @@ class P {
bazz(k);
bazz(k);
}
void m(int k) {
new Runnable() {
public void run() {}
void mm() {
bazz(k);
}
};
}
}