* libjava.compile/SuperConstr.java: New test case.
From-SVN: r38793
This commit is contained in:
committed by
Bryce McKinlay
parent
0c58da3ed0
commit
4fd297757d
@@ -0,0 +1,20 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user