Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
StringTemplate.fir.kt
blob: eec439f2a1e95cee6a39187f000487070d4b5321 [
file
]
// CHECK_TYPE
fun foo
(
x
:
Number
,
y
:
String
?):
String
{
val result
=
"abcde $x ${x as Int} ${y!!} $x $y"
checkSubtype
<
Int
>(
x
)
checkSubtype
<
String
>(
y
)
return
result
}