mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-19 06:45:17 +00:00
16 lines
209 B
Java
16 lines
209 B
Java
/* /nodynamiccopyright/ */
|
|
|
|
package p;
|
|
|
|
class Inner extends Outer.Super {
|
|
Inner(Outer t) {
|
|
t.super();
|
|
}
|
|
|
|
Outer this$0 = null;
|
|
|
|
public void foo() {
|
|
this$0 = new Outer();
|
|
}
|
|
}
|