2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-09-05 16:43:00 -07:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4974927
|
|
|
|
* @summary The compiler was allowing void types in its parsing of conditional expressions.
|
|
|
|
* @author tball
|
|
|
|
*
|
2014-09-05 16:43:00 -07:00
|
|
|
* @compile/fail/ref=ConditionalWithVoid.out -XDrawDiagnostics ConditionalWithVoid.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
public class ConditionalWithVoid {
|
|
|
|
public int test(Object o) {
|
|
|
|
// Should fail to compile since Object.wait() has a void return type.
|
|
|
|
System.out.println(o instanceof String ? o.hashCode() : o.wait());
|
|
|
|
}
|
|
|
|
}
|