Files
kotlin/compiler/testData/codegen/box/classes/exceptionConstructor.kt
2015-10-14 20:39:59 +03:00

8 lines
149 B
Kotlin
Vendored

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