Files
kotlin-fork/idea/testData/debugger/breakpointApplicability/simple.kt
T
Yan Zhulanow 25fb77e7ad Debugger: Add breakpoint applicability tests
This commit adds a number of tests that check breakpoint placing behavior, and an inline action that work the same way as tests.
2019-08-07 01:15:28 +09:00

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