diff --git a/compiler/testData/ir/irText/declarations/annotations/javaAnnotation.kt b/compiler/testData/ir/irText/declarations/annotations/javaAnnotation.kt index 984f836d08a..0a237e5613a 100644 --- a/compiler/testData/ir/irText/declarations/annotations/javaAnnotation.kt +++ b/compiler/testData/ir/irText/declarations/annotations/javaAnnotation.kt @@ -1,5 +1,5 @@ -// FILE: JavaAnn.java // FIR_IDENTICAL +// FILE: JavaAnn.java import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @@ -10,7 +10,6 @@ import java.lang.annotation.RetentionPolicy; } // FILE: javaAnnotation.kt -// FIR_IDENTICAL @JavaAnn fun test1() {} @JavaAnn(value="abc", i=123) fun test2() {} diff --git a/compiler/testData/ir/irText/firProblems/AllCandidates.kt b/compiler/testData/ir/irText/firProblems/AllCandidates.kt index 2be5a3b8e18..16e6942a26e 100644 --- a/compiler/testData/ir/irText/firProblems/AllCandidates.kt +++ b/compiler/testData/ir/irText/firProblems/AllCandidates.kt @@ -1,3 +1,5 @@ +// WITH_RUNTIME +// FULL_JDK // FILE: OverloadResolutionResultsImpl.java import java.util.*; @@ -18,8 +20,6 @@ public class OverloadResolutionResultsImpl { } // FILE: AllCandidates.kt -// WITH_RUNTIME -// FULL_JDK class ResolvedCall diff --git a/compiler/testData/ir/irText/firProblems/typeParameterFromJavaClass.kt b/compiler/testData/ir/irText/firProblems/typeParameterFromJavaClass.kt index 30faaaed089..5b16cd7ed69 100644 --- a/compiler/testData/ir/irText/firProblems/typeParameterFromJavaClass.kt +++ b/compiler/testData/ir/irText/firProblems/typeParameterFromJavaClass.kt @@ -1,3 +1,4 @@ +// WITH_RUNTIME // FILE: Pair.java public class Pair { @@ -26,8 +27,6 @@ public interface FilePath { // FILE: typeParameterFromJavaClass.kt -// WITH_RUNTIME - fun foo(movedPaths: MutableList>) { movedPaths.forEach { it.second.name } } diff --git a/compiler/testData/ir/irText/stubs/javaMethod.kt b/compiler/testData/ir/irText/stubs/javaMethod.kt index 647d84862f7..96a7df4b172 100644 --- a/compiler/testData/ir/irText/stubs/javaMethod.kt +++ b/compiler/testData/ir/irText/stubs/javaMethod.kt @@ -1,3 +1,4 @@ +// FIR_IDENTICAL // !DUMP_DEPENDENCIES // FILE: J.java @@ -6,6 +7,5 @@ public class J { } // FILE: javaMethod.kt -// FIR_IDENTICAL -fun test(j: J) = j.bar() \ No newline at end of file +fun test(j: J) = j.bar() diff --git a/compiler/testData/ir/irText/stubs/javaNestedClass.kt b/compiler/testData/ir/irText/stubs/javaNestedClass.kt index 69fc05a853f..faf0cc40427 100644 --- a/compiler/testData/ir/irText/stubs/javaNestedClass.kt +++ b/compiler/testData/ir/irText/stubs/javaNestedClass.kt @@ -1,3 +1,4 @@ +// FIR_IDENTICAL // !DUMP_DEPENDENCIES // FILE: J.java @@ -10,5 +11,4 @@ public class J { // FILE: javaNestedClass.kt -// FIR_IDENTICAL -fun test(jj: J.JJ) = jj.foo() \ No newline at end of file +fun test(jj: J.JJ) = jj.foo() diff --git a/compiler/testData/ir/irText/stubs/javaStaticMethod.kt b/compiler/testData/ir/irText/stubs/javaStaticMethod.kt index 72f4af43050..f69562021c6 100644 --- a/compiler/testData/ir/irText/stubs/javaStaticMethod.kt +++ b/compiler/testData/ir/irText/stubs/javaStaticMethod.kt @@ -1,3 +1,4 @@ +// FIR_IDENTICAL // !DUMP_DEPENDENCIES // FILE: J.java @@ -6,6 +7,5 @@ public class J { } // FILE: javaStaticMethod.kt -// FIR_IDENTICAL -fun test() = J.bar() \ No newline at end of file +fun test() = J.bar() diff --git a/compiler/testData/ir/irText/stubs/kotlinInnerClass.kt b/compiler/testData/ir/irText/stubs/kotlinInnerClass.kt index eb4db4b5d1d..f63f02bef84 100644 --- a/compiler/testData/ir/irText/stubs/kotlinInnerClass.kt +++ b/compiler/testData/ir/irText/stubs/kotlinInnerClass.kt @@ -1,3 +1,4 @@ +// FIR_IDENTICAL // !DUMP_DEPENDENCIES // FILE: external.kt @@ -10,5 +11,4 @@ class Outer { } // FILE: kotlinInnerClass.kt -// FIR_IDENTICAL -fun test(inner: Outer.Inner) = inner.foo() \ No newline at end of file +fun test(inner: Outer.Inner) = inner.foo() diff --git a/compiler/testData/ir/irText/types/nullChecks/enhancedNullabilityInDestructuringAssignment.kt b/compiler/testData/ir/irText/types/nullChecks/enhancedNullabilityInDestructuringAssignment.kt index 854ac712de1..da44261caa0 100644 --- a/compiler/testData/ir/irText/types/nullChecks/enhancedNullabilityInDestructuringAssignment.kt +++ b/compiler/testData/ir/irText/types/nullChecks/enhancedNullabilityInDestructuringAssignment.kt @@ -1,5 +1,5 @@ -// FILE: enhancedNullabilityInDestructuringAssignment.kt // WITH_RUNTIME +// FILE: enhancedNullabilityInDestructuringAssignment.kt fun use(x: Any, y: Any) {} @@ -56,4 +56,4 @@ public static class J { public static @NotNull Q<@NotNull String, @NotNull String> notNullQAndComponents() { return null; } public static List<@NotNull P> listOfNotNull() { return null; } -} \ No newline at end of file +}