Files
kotlin-fork/js/js.translator/testData/native/cases/library.kt
T
2015-09-18 10:14:34 +03:00

17 lines
217 B
Kotlin
Vendored

package foo
@library class A() {
@library fun f() {
}
@library fun f(a: Int) {
}
}
@library fun getResult() = false
fun box(): Boolean {
val a = A()
a.f()
a.f(2)
return getResult()
}