Test for overriding with a native function

This commit is contained in:
Andrey Breslav
2014-12-01 16:04:23 +03:00
parent 3a8ca2608d
commit 5187694b22
3 changed files with 31 additions and 0 deletions
@@ -0,0 +1,9 @@
import kotlin.jvm.*
trait Base {
fun foo()
}
class Derived : Base {
override native fun foo()
}