Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
Throw.fir.kt
blob: ea864dd2faa6015a8962ea985e088fc3b8ced03a [
file
]
fun bar
(
x
:
Int
):
RuntimeException
=
RuntimeException
(
x
.
toString
())
fun foo
()
{
val x
:
Int
?
=
null
if
(
x
==
null
)
throw
bar
(<!
ARGUMENT_TYPE_MISMATCH
!>
x
<!>)
throw
bar
(
x
)
throw
bar
(
x
)
}