aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/interfaceLibrary/ClientCE.java
blob: a92bd522e900b6fdd0cd7765cd113768685a6d67 (plain)
1
2
3
4
5
6
7
8
9
public class ClientCE {
    public static void main(String[] a) {
        new C().run(); // CE 5 expected: declare IOException
    }
}

class C implements lib.LibraryInterface {}