Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
codegen
/
box
/
functions
/
kt1413.kt
blob: 15b496fb9b99716d9dadb876a02c8d22ac8e8934 [
file
]
package
t
interface
I
{
fun f
()
}
class
Test
{
fun foo
(){
val i
:
I
=
object
:
I
{
override
fun f
()
{
fun
local
(){
bar
()
}
local
()
}
}
i
.
f
()
}
fun bar
(){}
}
fun box
()
:
String
{
Test
().
foo
()
return
"OK"
}