<@U0BLU7JTA>, can we make something like this to a...
# language-proposals
s
@dmitry.petrov, can we make something like this to achieve this behavior? :
Copy code
interface SomeInterface {
    fun hi()
}

interface SomeClass_SomeInterface {
    fun hi() {
        print("hi")
    }
} 

class SomeClass: SomeClass_SomeInterface {

}