Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
initOrderMultiModule.kt
blob: 3d91c48fdf16d5a3c3c174ad3822045b273a7da3 [
file
]
// MODULE: lib
// FILE: lib.kt
// KT-34273
class
Foo
(
val str
:
String
)
private
val foo1
=
Foo
(
"OK"
)
val foo2
=
foo1
// MODULE: main(lib)
// FILE: main.kt
fun box
():
String
=
foo2
.
str