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