Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
kt3738.kt
blob: a05dbde0ae1275c2d2e0a38059e5617473f30b14 [
file
]
class
A
{
fun foo
()
{}
fun bar
(
f
:
A
.()
->
Unit
=
{})
{}
}
class
B
{
class
D
{
init
{
A
().
bar
{
this
.
foo
()
}
}
}
}
fun box
():
String
{
B
.
D
()
return
"OK"
}