Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1fbe2c8085532ef2fa66bf26fdf2b04c5cca97
/
.
/
compiler
/
testData
/
codegen
/
box
/
lateinit
/
localInitialized.kt
blob: 43e79725c0000205a4aa279563f40b74b3334143 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
lateinit
var
s
:
String
s
=
"OK"
return
s
}