blob: ab79a2237fc5f732fe070cb4a2d631aa8457a783 [file]
>>> throw Exception("hi there")
java.lang.Exception: hi there
>>> fun foo() = 2
>>> foo()
2
>>> fun bar(): Nothing = throw AssertionError()
>>> bar()
java.lang.AssertionError
at Line4.bar(Unknown Source)