Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
classes
/
kt1611.kt
blob: b04a15ef70e922367a5eec38e857aef45890818e [
file
]
fun box
():
String
{
return
Foo
().
doBar
(
"OK"
)
}
class
Foo
()
{
val bar
:
(
str
:
String
)
->
String
=
{
it
}
fun doBar
(
str
:
String
):
String
{
return
bar
(
str
);
}
}