mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 04:38:58 +08:00
21 lines
326 B
Java
21 lines
326 B
Java
|
// It is legal to reference "this" from an enclosing type, or an instance
|
||
|
// field from an enclosing type, in a super constructor call.
|
||
|
|
||
|
public class SuperConstr
|
||
|
{
|
||
|
SuperConstr (Object x, Outer y) {}
|
||
|
}
|
||
|
|
||
|
class Outer
|
||
|
{
|
||
|
Object x;
|
||
|
|
||
|
class Sub extends SuperConstr
|
||
|
{
|
||
|
Sub()
|
||
|
{
|
||
|
super(x, Outer.this);
|
||
|
}
|
||
|
}
|
||
|
}
|