parent
373ca99e37
commit
6889e7435a
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,17 @@ |
|||||||
|
package pkg; |
||||||
|
|
||||||
|
class TestInnerClassConstructor { |
||||||
|
void m() { |
||||||
|
new TestInnerClassConstructor.Inner("text"); |
||||||
|
} |
||||||
|
|
||||||
|
void n(String var1) { |
||||||
|
System.out.println("n(): " + var1); |
||||||
|
} |
||||||
|
|
||||||
|
final class Inner { |
||||||
|
private Inner(String var2) { |
||||||
|
TestInnerClassConstructor.this.n(var2); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package pkg; |
||||||
|
|
||||||
|
class TestInnerClassConstructor { |
||||||
|
void m() { |
||||||
|
new Inner("text"); |
||||||
|
} |
||||||
|
|
||||||
|
void n(String s) { |
||||||
|
System.out.println("n(): " + s); |
||||||
|
} |
||||||
|
|
||||||
|
final class Inner { |
||||||
|
private Inner(String s) { |
||||||
|
n(s); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue