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

class C extends lib.LibraryClass {}