blob: 5eaa42b1ff827447c142c9c962bc0ac00fd28422 [file] [log] [blame]
>>> throw Exception("hi there")
java.lang.Exception: hi there
>>> fun foo() = 2
>>> foo()
2
>>> fun bar(): Nothing = throw AssertionError()
>>> bar()
java.lang.AssertionError
at Line_3.bar(Unknown Source)