Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
compileKotlinAgainstKotlin
/
targetedJvmName.kt
blob: 3ae0ab843ff601bd867e330af7c311be94c5aa7e [
file
] [
log
] [
blame
]
// IGNORE_BACKEND: NATIVE
// FILE: A.kt
package
lib
@set
:
JvmName
(
"renamedSetFoo"
)
@get
:
JvmName
(
"renamedGetFoo"
)
var
foo
=
"not set"
// FILE: B.kt
import
lib
.*
fun box
():
String
{
foo
=
"OK"
return
foo
}