fixed synthetic params

This commit is contained in:
Egor Ushakov
2018-01-11 11:24:21 +03:00
parent 6715ecf53d
commit 0bb1f6801c
9 changed files with 32 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
public class TestSuperInner {
protected abstract class Inner {
protected Inner() {
}
}
}
+4
View File
@@ -0,0 +1,4 @@
class TestSuperInner2 extends TestSuperInner {
protected class Inner2 extends Inner {
}
}