8 lines
174 B
Kotlin
Vendored
8 lines
174 B
Kotlin
Vendored
// INPUT_DATA_FILE: readlnEmpty.in
|
|
|
|
import kotlin.test.*
|
|
|
|
fun main() {
|
|
assertFailsWith<RuntimeException> { readln() }
|
|
assertFailsWith<RuntimeException> { readln() }
|
|
} |