Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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