summaryrefslogtreecommitdiffstats
path: root/tests/new/InterfaceConstructor.java
blob: 080e4406b4222a4d85a4aee00847310b3807af1d (plain)
1
2
3
4
5
6
7
8
9
interface i {
    i() {}          // ERR: interfaces can't have constructors
}

class c {
    c(); //ERR: constructors must have bodies

    abstract c(int i) { } //ERR: constructors can't be abstract
}