d15c9840ed
Reviewed-by: jjg
18 lines
365 B
Java
18 lines
365 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 6219964
|
|
* @summary Compiler allows illegal cast of anonymous inner class
|
|
* @compile/fail/ref=T6219964.out -XDrawDiagnostics T6219964.java
|
|
*/
|
|
|
|
public class T6219964 {
|
|
interface I { }
|
|
void foo() {
|
|
new Object() {
|
|
I bar() {
|
|
return (I)this;
|
|
}
|
|
};
|
|
}
|
|
}
|