Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
localClass
/
localFunctionCallFromLocalClass.kt
blob: 11867919264a3192ca1d9c67743bcf5c4cfcd967 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun box
():
String
{
var
x
=
1
fun local1
()
{
x
++
}
class
A
{
fun bar
()
{
local1
()
}
}
A
().
bar
()
return
"OK"
}