Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
localFunctionInInitializer.kt
blob: 6035aac60adcf4d390f73eced1c9b336ce35bd5a [
file
]
fun box
():
String
{
fun
local
():
Int
{
return
10
;
}
class
A
{
val test
=
local
()
}
return
if
(
A
().
test
==
10
)
"OK"
else
"fail"
}