Files
kotlin-fork/idea/testData/unifier/equivalence/controlStructures/throw.kt
T

6 lines
146 B
Kotlin

fun foo() {
<selection>throw AssertionError()</selection>
throw NullPointerException()
AssertionError()
throw (AssertionError())
}