mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Don't include our compiler's and preloader's internal code, reflection, native methods etc. Also delete "substring" matching logic from tests
12 lines
262 B
Plaintext
12 lines
262 B
Plaintext
>>> throw Exception("hi there")
|
|
java.lang.Exception: hi there
|
|
at Line1.<init>(Unknown Source)
|
|
>>> fun foo() = 2
|
|
>>> foo()
|
|
2
|
|
>>> fun bar() = throw AssertionError()
|
|
>>> bar()
|
|
java.lang.AssertionError
|
|
at Line4.bar(Unknown Source)
|
|
at Line5.<init>(Unknown Source)
|