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.
16 lines
321 B
Java
16 lines
321 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4482403
|
|
* @summary javac failed to check second bound
|
|
* @author gafter
|
|
*
|
|
* @compile/fail/ref=Multibound1.out -XDrawDiagnostics Multibound1.java
|
|
*/
|
|
|
|
package Multibound1;
|
|
|
|
interface A {}
|
|
interface B {}
|
|
class C<T extends A&B> {}
|
|
class D implements A {}
|
|
class E extends C<D> {}
|