8 lines
110 B
Kotlin
8 lines
110 B
Kotlin
package runtime.basic.main_exception
|
|
|
|
import kotlin.test.*
|
|
|
|
@Test fun runTest() {
|
|
throw Error("Hello!")
|
|
}
|