f129ab55c5
This commit fixes the following tests: - KotlinSteppingTestGenerated.Custom.testStepOutInlineFunctionStdlib - KotlinSteppingTestGenerated.StepOut.testStepOutSeveralInlineArgumentDeepest
17 lines
293 B
Kotlin
Vendored
17 lines
293 B
Kotlin
Vendored
package dataClassCopy
|
|
|
|
fun main() {
|
|
val a = Foo("foo")
|
|
//Breakpoint!
|
|
a.copy("bar")
|
|
}
|
|
|
|
data class Foo(val a: String)
|
|
|
|
// STEP_INTO: 2
|
|
|
|
// EXPRESSION: Foo("baz")
|
|
// RESULT: instance of dataClassCopy.Foo(id=ID): LdataClassCopy/Foo;
|
|
|
|
// EXPRESSION: a
|
|
// RESULT: Unresolved reference: a |