mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
10 lines
205 B
Plaintext
Vendored
10 lines
205 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 Line4.bar(Unknown Source)
|