Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
functionLiterals
/
kt51317.fir.kt
blob: fa6d1df9fb94f2915063e7d9aa76fe79bf8b578a [
file
]
val f
:
(
String
.()
->
String
)?
=
null
fun box
():
String
{
val g
=
when
{
f
!=
null
->
f
else
->
{
{
this
+
"K"
}
}
}
return
g
(
"O"
)
}