diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/hashTableWithForEach.kt b/compiler/fir/resolve/testData/resolveWithStdlib/hashTableWithForEach.kt index b3f50a3904d..8b4584fb4e7 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/hashTableWithForEach.kt +++ b/compiler/fir/resolve/testData/resolveWithStdlib/hashTableWithForEach.kt @@ -1,3 +1,4 @@ +// FULL_JDK import java.util.* import java.util.function.BiConsumer diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/j+k/capturedFlexible.kt b/compiler/fir/resolve/testData/resolveWithStdlib/j+k/capturedFlexible.kt index 4b559137c9c..e2949a20d94 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/j+k/capturedFlexible.kt +++ b/compiler/fir/resolve/testData/resolveWithStdlib/j+k/capturedFlexible.kt @@ -1,3 +1,4 @@ +// FULL_JDK fun foo(z: java.util.zip.ZipFile) { z.entries().asSequence() } diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/topLevelResolve.kt b/compiler/fir/resolve/testData/resolveWithStdlib/topLevelResolve.kt index 793f973a452..7aecae52983 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/topLevelResolve.kt +++ b/compiler/fir/resolve/testData/resolveWithStdlib/topLevelResolve.kt @@ -1,3 +1,4 @@ +// FULL_JDK fun testPlus() { val x = 1 + 2 val y = 3.0 + 4.0 diff --git a/compiler/fir/resolve/testData/resolveWithStdlib/typeAliasWithForEach.kt b/compiler/fir/resolve/testData/resolveWithStdlib/typeAliasWithForEach.kt index 935302e8989..81ded3b8f6b 100644 --- a/compiler/fir/resolve/testData/resolveWithStdlib/typeAliasWithForEach.kt +++ b/compiler/fir/resolve/testData/resolveWithStdlib/typeAliasWithForEach.kt @@ -1,3 +1,4 @@ +// FULL_JDK import java.util.* interface ArgsInfo diff --git a/compiler/fir/resolve/tests/org/jetbrains/kotlin/fir/AbstractFirResolveTestCaseWithStdlib.kt b/compiler/fir/resolve/tests/org/jetbrains/kotlin/fir/AbstractFirResolveTestCaseWithStdlib.kt index 450395154f7..3b821d9acfe 100644 --- a/compiler/fir/resolve/tests/org/jetbrains/kotlin/fir/AbstractFirResolveTestCaseWithStdlib.kt +++ b/compiler/fir/resolve/tests/org/jetbrains/kotlin/fir/AbstractFirResolveTestCaseWithStdlib.kt @@ -12,8 +12,4 @@ abstract class AbstractFirDiagnosticsWithStdlibTest : AbstractFirDiagnosticsTest override fun getConfigurationKind(): ConfigurationKind { return ConfigurationKind.ALL } - - override fun getTestJdkKind(files: List): TestJdkKind { - return TestJdkKind.FULL_JDK - } } \ No newline at end of file