fitzoh
06/23/2017, 9:25 PMinterface SomeInterface{
fun doAThing()
}
class DoesNotExplicitlyImplementSomeInterface{
fun doAThing(){
TODO()
}
fun doSomeOtherThings(){
TODO()
}
}
fun main(args: Array<String>) {
val obj = DoesNotExplicitlyImplementSomeInterface() as SomeInterface
}