Files
kotlin/compiler/testData/codegen/classes/exceptionConstructor.jet
2011-10-20 16:21:18 +02:00

8 lines
154 B
Plaintext

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