K2 IC: fix lookup recording for a "red" companion object

#KT-63665 fixed
This commit is contained in:
Ilya Chernikov
2023-12-07 18:02:25 +01:00
committed by Space Team
parent 6dfcc927f4
commit ed820d6b57
6 changed files with 82 additions and 3 deletions
@@ -0,0 +1,31 @@
/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.incremental;
import com.intellij.testFramework.TestDataPath;
import org.jetbrains.kotlin.test.JUnit3RunnerWithInners;
import org.jetbrains.kotlin.test.KotlinTestUtils;
import org.jetbrains.kotlin.test.TargetBackend;
import org.jetbrains.kotlin.test.TestMetadata;
import org.junit.runner.RunWith;
@SuppressWarnings("all")
@RunWith(JUnit3RunnerWithInners.class)
public class IncrementalK2JvmCompilerRunnerTestCustom extends AbstractIncrementalK2JvmCompilerRunnerTest {
@TestMetadata("jps/jps-plugin/testData/incremental/custom")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class Custom extends AbstractIncrementalK2JvmCompilerRunnerTest {
private void runTest(String testDataFilePath) throws Exception {
KotlinTestUtils.runTest(this::doTest, TargetBackend.JVM_IR, testDataFilePath);
}
@TestMetadata("companionWithSyntaxError")
public void testCompanionWithSyntaxError() throws Exception {
runTest("jps/jps-plugin/testData/incremental/custom/companionWithSyntaxError/");
}
}
}