Files
kotlin-fork/idea/testData/debugger/breakpointApplicability/properties.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

9 lines
160 B
Kotlin
Vendored

class Foo1 {
val x: String /// F, L
get() = "foo" /// M
}
class Foo2 { /// M
val x: String = "foo" /// F, L
get() = field + "x" /// M
}