25fb77e7ad
This commit adds a number of tests that check breakpoint placing behavior, and an inline action that work the same way as tests.
11 lines
133 B
Kotlin
Vendored
11 lines
133 B
Kotlin
Vendored
package simple
|
|
|
|
fun main() { /// M
|
|
val a = 5 /// L
|
|
foo(a) /// L
|
|
} /// L
|
|
|
|
fun foo(a: Int) { /// M
|
|
val b = 6 /// L
|
|
} /// L
|