Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
12 lines
246 B
Java
12 lines
246 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7157165
|
|
*
|
|
* @summary Regression: code with disjunctive type crashes javac
|
|
* @compile/fail/ref=T7157165.out -XDrawDiagnostics T7157165.java
|
|
*
|
|
*/
|
|
|
|
class T7157165 {
|
|
Foo<? extends A|B> foo1 = null;
|
|
}
|