Test for overriding with a native function
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import kotlin.jvm.*
|
||||
|
||||
trait Base {
|
||||
fun foo()
|
||||
}
|
||||
|
||||
class Derived : Base {
|
||||
override native fun foo()
|
||||
}
|
||||
Reference in New Issue
Block a user