a11cd67b7c
Javac should warn/complain about identifiers with the same name as synthetic symbol Reviewed-by: jjg
14 lines
181 B
Java
14 lines
181 B
Java
package p;
|
|
|
|
class Inner extends Outer.Super {
|
|
Inner(Outer t) {
|
|
t.super();
|
|
}
|
|
|
|
Outer this$0 = null;
|
|
|
|
public void foo() {
|
|
this$0 = new Outer();
|
|
}
|
|
}
|