mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00

Workaround for redundant (but harmless) synthetic cast generated in TransTypes Reviewed-by: mcimadamore
16 lines
216 B
Text
16 lines
216 B
Text
|
|
class E extends S {
|
|
|
|
E() {
|
|
super();
|
|
}
|
|
{
|
|
t = new C();
|
|
new I(<*nullchk*>((C)t)){
|
|
|
|
(.C x0) {
|
|
x0.super();
|
|
}
|
|
};
|
|
}
|
|
}
|