Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
function
/
localFunction3.kt
blob: bfe312302c8d3862b3f8c72fde503c852ea4f5be [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
fun bar
()
{
fun local1
()
{
bar
()
}
local1
()
var
x
=
0
fun local2
()
{
x
++
bar
()
}
local2
()
}
return
"OK"
}