blob: 643e06a9a2b8c729debd537212fd00c042b044d3 [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 Line_3.bar(Line_3.kts:1)