eclipse-archived / ceylon

The Ceylon compiler, language module, and command line tools
http://ceylon-lang.org
Apache License 2.0
395 stars 62 forks source link

static methods on interface give Java backend error #7430

Open dlkw opened 5 years ago

dlkw commented 5 years ago
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)