langtools/test/tools/javac/generics/bridges/tests/TestNoBridgeInSiblingsSuper.java
equal
deleted
inserted
replaced
18 * |
18 * |
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 * or visit www.oracle.com if you need additional information or have any |
20 * or visit www.oracle.com if you need additional information or have any |
21 * questions. |
21 * questions. |
22 */ |
22 */ |
|
23 |
23 class TestNoBridgeInSiblingSuper { |
24 class TestNoBridgeInSiblingSuper { |
24 interface A { Object m(); } |
25 interface A { Object m(); } |
25 interface B { String m(); } |
26 interface B { String m(); } |
26 //no bridge here! |
27 //no bridge here! |
27 interface C extends A, B { } |
28 interface C extends A, B { } |