Replace @native with external in tests

This commit is contained in:
Ilya Gorbunov
2017-01-26 04:13:39 +03:00
parent 20f175d091
commit 3be1174824
16 changed files with 18 additions and 33 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
data class A(val number: Int)
@native fun foo(first: A, second: A): Boolean
external fun foo(first: A, second: A): Boolean
@native class B(value: Int)
external class B(value: Int)
fun box(): String {
val a = A(23)