Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertIfWithThrowToAssert
/
nullSent.kt
blob: aded6800c650aa78ffa226add310bcb0fdb34bf2 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
if
<caret>
(
true
)
{
throw
AssertionError
(
null
)
}
}