ceylon icon indicating copy to clipboard operation
ceylon copied to clipboard

static methods on interface give Java backend error

Open dlkw opened this issue 7 years ago • 0 comments

shared interface InterfaceWithStaticMethod{
    shared static void method()
    {
        print("hello");
    }
}

shared class Impl() satisfies InterfaceWithStaticMethod
{
}

gives Ceylon backend error: method does not override or implement a method from a supertype (Ceylon 1.3.3 on Java 8)

dlkw avatar Sep 30 '18 13:09 dlkw