[kotlin][tests][compiler/testData/debug/stepping] kt-42208 test added.
diff --git a/compiler/testData/debug/stepping/kt42208.kt b/compiler/testData/debug/stepping/kt42208.kt
new file mode 100644
index 0000000..c24d7d0
--- /dev/null
+++ b/compiler/testData/debug/stepping/kt42208.kt
@@ -0,0 +1,19 @@
+// FILE: test.kt
+
+fun box() {
+ foo()()
+}
+// FILE: test1.kt
+// aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+inline fun foo() = {
+}
+// LINENUMBERS
+// test.kt:4 box
+// test1.kt:3 box
+// test1.kt:4 box
+// LINENUMBERS JVM_IR
+// test.kt:4 box
+// test1.kt:4 invoke
+// test.kt:4 box
+// LINENUMBERS
+// test.kt:5 box
\ No newline at end of file
diff --git a/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/IrSteppingTestGenerated.java b/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/IrSteppingTestGenerated.java
index 653fd46..67733e9 100644
--- a/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/IrSteppingTestGenerated.java
+++ b/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/IrSteppingTestGenerated.java
@@ -249,6 +249,12 @@
}
@Test
+ @TestMetadata("kt42208.kt")
+ public void testKt42208() throws Exception {
+ runTest("compiler/testData/debug/stepping/kt42208.kt");
+ }
+
+ @Test
@TestMetadata("lambdaStepInline.kt")
public void testLambdaStepInline() throws Exception {
runTest("compiler/testData/debug/stepping/lambdaStepInline.kt");
diff --git a/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/SteppingTestGenerated.java b/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/SteppingTestGenerated.java
index b2ccbb9..a720f28 100644
--- a/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/SteppingTestGenerated.java
+++ b/compiler/tests-gen/org/jetbrains/kotlin/codegen/debugInformation/SteppingTestGenerated.java
@@ -249,6 +249,12 @@
}
@Test
+ @TestMetadata("kt42208.kt")
+ public void testKt42208() throws Exception {
+ runTest("compiler/testData/debug/stepping/kt42208.kt");
+ }
+
+ @Test
@TestMetadata("lambdaStepInline.kt")
public void testLambdaStepInline() throws Exception {
runTest("compiler/testData/debug/stepping/lambdaStepInline.kt");