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