39662c09e9
This commit fixes the 'SmartStepIntoTestGenerated#testFunWithExpressionBody' test.
9 lines
166 B
Kotlin
Vendored
9 lines
166 B
Kotlin
Vendored
class Foo1 { /// M
|
|
val x: String /// F, L
|
|
get() = "foo" /// M
|
|
}
|
|
|
|
class Foo2 { /// M
|
|
val x: String = "foo" /// F, L
|
|
get() = field + "x" /// M
|
|
} |