Files
kotlin/compiler/testData/repl/evaluationErrors.repl
2015-09-21 14:41:31 +03:00

10 lines
196 B
Plaintext
Vendored

>>> throw Exception("hi there")
java.lang.Exception: hi there
>>> fun foo() = 2
>>> foo()
2
>>> fun bar() = throw AssertionError()
>>> bar()
java.lang.AssertionError
at Line4.bar(Unknown Source)