[java-decompiler] synthetic inner class constructor parameter filtering (IDEA-147606)

This commit is contained in:
Roman Shevchenko
2015-11-11 16:25:11 +01:00
parent 45a41684e6
commit 1794156473
11 changed files with 74 additions and 30 deletions

View File

@@ -1,10 +1,14 @@
package pkg;
class TestInnerClassConstructor {
void m() {
void l() {
new Inner("text");
}
void m() {
new Another(3, 4);
}
void n(String s) {
System.out.println("n(): " + s);
}
@@ -14,4 +18,10 @@ class TestInnerClassConstructor {
n(s);
}
}
private class Another {
private Another(int a, int b) {
n(a + "+" + b);
}
}
}