1/*
2 * @test /nodynamiccopyright/
3 * @bug 4482403
4 * @summary javac failed to check second bound
5 * @author gafter
6 *
7 * @compile/fail/ref=Multibound1.out -XDrawDiagnostics  Multibound1.java
8 */
9
10package Multibound1;
11
12interface A {}
13interface B {}
14class C<T extends A&B> {}
15class D implements A {}
16class E extends C<D> {}
17