sanf0rd
08/29/2017, 1:12 AMinterface SomeInterface {
fun hi()
}
class SomeClass: SomeInterface {
}
fun SomeClass.hi() {
print("hi")
}
So, My proposal is that the compiler can infer the interface conformance with the extension function implementation and not show an error in the class declaration. What do you think guys?voddan
08/29/2017, 4:59 AMvoddan
08/29/2017, 5:01 AMorangy
tschuchort
08/31/2017, 10:31 AM