eclipse-archived/ceylon

bug with unshared static interface members

Closed this issue · 1 comments

This code:

interface StaticInterfaceMethods {
    static Integer get() => 2;
    shared static Integer val = get();
}

results in:

Ceylon backend error: modifier private not allowed here

Fixed.