Files
kotlin-fork/compiler/testData/codegen/classes/exceptionConstructor.kt
T
2013-01-24 21:12:27 +04:00

8 lines
154 B
Kotlin

class GameError(msg: String): Exception(msg) {
}
fun box(): String {
val e = GameError("foo")
return if (e.getMessage() == "foo") "OK" else "fail"
}