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
@@ -1,6 +1,6 @@
package test
@native fun foo(ignore: dynamic): String
external fun foo(ignore: dynamic): String
@JsName("foo")
fun foo() = "K"
@@ -1,8 +1,8 @@
package test
@native fun foo(): dynamic
external fun foo(): dynamic
@native fun bar(): dynamic
external fun bar(): dynamic
fun box(): String {
val foo = "local foo;"