14 lines
157 B
Plaintext
14 lines
157 B
Plaintext
package a
|
|
|
|
import java.lang.AssertionError
|
|
|
|
fun foo() {
|
|
if (!true) {
|
|
throw AssertionError("text")
|
|
}
|
|
}
|
|
|
|
class AssertionError
|
|
|
|
// WITH_RUNTIME
|