mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
10 lines
206 B
Plaintext
Vendored
10 lines
206 B
Plaintext
Vendored
>>> 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)
|