Srikanth Adayapalam 4eb573aa81 8067914: Redundant type cast nodes in AST (follow up from JDK-8043741)
Workaround for redundant (but harmless) synthetic cast generated in TransTypes

Reviewed-by: mcimadamore
2015-01-09 15:51:20 +00:00

17 lines
216 B
Plaintext

class E extends S {
E() {
super();
}
{
t = new C();
new I(<*nullchk*>((C)t)){
(.C x0) {
x0.super();
}
};
}
}