Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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"
)
}