25fb77e7ad
This commit adds a number of tests that check breakpoint placing behavior, and an inline action that work the same way as tests.
9 lines
160 B
Kotlin
Vendored
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
|
|
} |