Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
compileKotlinAgainstKotlin
/
kt14012.kt
blob: 2b90f2170a614049a340d7d5a66b74ed79e67098 [
file
] [
log
] [
blame
]
// MODULE: lib
// FILE: A.kt
package
test
var
property
=
"fail"
private
set
fun test
()
{
property
=
"OK"
}
// MODULE: main(lib)
// FILE: B.kt
import
test
.*
fun box
():
String
{
test
()
return
property
}