ELENA-LANG / elena-lang

ELENA is a general-purpose language with late binding. It is multi-paradigm, combining features of functional and object-oriented programming. Rich set of tools are provided to deal with message dispatching : multi-methods, message qualifying, generic message handlers, run-time interfaces
https://elena-lang.github.io/
MIT License
236 stars 26 forks source link

Abstract method should not have a body #519

Closed arakov closed 4 years ago

arakov commented 4 years ago

Abstract method should not have a body

interface IFoo
{
    abstract foo();
}

To keep backward compatibility, the abstract method with empty body will be accepted, but a warning will be generated

arakov commented 4 years ago

done