Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
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"
}