15 lines
340 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 4982096 5004321
* @summary the type in an instanceof expression must be reifiable
* @author seligman
*
* @compile/fail/ref=InstanceOf2.out -XDrawDiagnostics InstanceOf2.java
2007-12-01 00:00:00 +00:00
*/
public class InstanceOf2 {
boolean m() {
return this.getClass() instanceof Class<InstanceOf2>;
}
}