Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
localFunctionInFunction.kt
blob: 4639ab437ddec51b1630f373fcdaf7dd412931b9 [
file
]
fun box
():
String
{
fun
local
():
Int
{
return
10
;
}
class
A
{
fun test
():
Int
{
return
local
()
}
}
return
if
(
A
().
test
()
==
10
)
"OK"
else
"fail"
}