File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
semanticdb-kotlinc/minimized/src
generatedSnapshots/resources/kotlin/snapshots Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ package snapshots
2+ // ^^^^^^^^^ reference snapshots/
3+
4+ import java.lang.RuntimeException
5+ // ^^^^ reference java/
6+ // ^^^^ reference java/lang/
7+ // ^^^^^^^^^^^^^^^^ reference java/lang/RuntimeException#
8+
9+ object ObjectKt {
10+ →fun fail (message : String? ): Nothing {
11+ // ^^^^ definition snapshots/ObjectKt#fail(). fail
12+ // ^^^^^^^ definition snapshots/ObjectKt#fail().(message) message
13+ // ^^^^^^ reference kotlin/String#
14+ // ^^^^^^^ reference kotlin/Nothing#
15+ →→throw RuntimeException (" " )
16+ // ^^^^^^^^^^^^^^^^ reference java/lang/RuntimeException#`<init>`(+1).
17+ →}
18+ }
Original file line number Diff line number Diff line change 1+ package snapshots
2+
3+ import java.lang.RuntimeException
4+
5+ object ObjectKt {
6+ fun fail (message : String? ): Nothing {
7+ throw RuntimeException (" " )
8+ }
9+ }
You can’t perform that action at this time.
0 commit comments