Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/jvmPackageNameInRootPackage.kt
T
2017-09-13 22:59:03 +03:00

20 lines
302 B
Kotlin
Vendored

// IGNORE_BACKEND: NATIVE
// FILE: A.kt
// LANGUAGE_VERSION: 1.2
@file:Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
@file:JvmPackageName("bar")
fun f() = "OK"
var v: Int = 1
// FILE: B.kt
// LANGUAGE_VERSION: 1.2
fun box(): String {
v = 2
if (v != 2) return "Fail"
return f()
}