groostav
08/23/2017, 10:19 PMval x = object A : SomeInterface { //compiler failure, "cannot bind to name A"
override fun methodRequiredByInterface(): Double {
return TODO()
}
fun doStuff() { TODO() }
}
val y = x.doStuff() //compiler failure "no such symbol 'doStuff'"