2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2015-05-15 17:43:21 -07: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
|
|
|
|
*
|
2015-05-15 17:43:21 -07:00
|
|
|
* @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>;
|
|
|
|
}
|
|
|
|
}
|