diff --git a/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendingMutableInterfaces.kt.mute b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendingMutableInterfaces.kt.mute new file mode 100644 index 00000000000..001ccb78a06 --- /dev/null +++ b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendingMutableInterfaces.kt.mute @@ -0,0 +1 @@ +https://youtrack.jetbrains.com/issue/KT-34105 \ No newline at end of file diff --git a/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendingReadOnlyInterfaces.kt.mute b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendingReadOnlyInterfaces.kt.mute new file mode 100644 index 00000000000..001ccb78a06 --- /dev/null +++ b/idea/testData/kotlinAndJavaChecker/javaAgainstKotlin/ExtendingReadOnlyInterfaces.kt.mute @@ -0,0 +1 @@ +https://youtrack.jetbrains.com/issue/KT-34105 \ No newline at end of file diff --git a/idea/testData/refactoring/moveMultiModule/moveFromJsModuleToJvmModule/moveFromJsModuleToJvmModule.test.mute b/idea/testData/refactoring/moveMultiModule/moveFromJsModuleToJvmModule/moveFromJsModuleToJvmModule.test.mute new file mode 100644 index 00000000000..7735bd9e2cf --- /dev/null +++ b/idea/testData/refactoring/moveMultiModule/moveFromJsModuleToJvmModule/moveFromJsModuleToJvmModule.test.mute @@ -0,0 +1 @@ +https://youtrack.jetbrains.com/issue/KT-34106 \ No newline at end of file diff --git a/idea/testData/refactoring/moveMultiModule/moveFromJvmModuleToJsModule/moveFromJvmModuleToJsModule.test.mute b/idea/testData/refactoring/moveMultiModule/moveFromJvmModuleToJsModule/moveFromJvmModuleToJsModule.test.mute new file mode 100644 index 00000000000..7735bd9e2cf --- /dev/null +++ b/idea/testData/refactoring/moveMultiModule/moveFromJvmModuleToJsModule/moveFromJvmModuleToJsModule.test.mute @@ -0,0 +1 @@ +https://youtrack.jetbrains.com/issue/KT-34106 \ No newline at end of file diff --git a/idea/testData/refactoring/moveMultiModule/moveJdkDependentToJsModule/moveJdkDependentToJsModule.test.mute b/idea/testData/refactoring/moveMultiModule/moveJdkDependentToJsModule/moveJdkDependentToJsModule.test.mute new file mode 100644 index 00000000000..7735bd9e2cf --- /dev/null +++ b/idea/testData/refactoring/moveMultiModule/moveJdkDependentToJsModule/moveJdkDependentToJsModule.test.mute @@ -0,0 +1 @@ +https://youtrack.jetbrains.com/issue/KT-34106 \ No newline at end of file diff --git a/idea/tests/org/jetbrains/kotlin/asJava/KtLightAnnotationTest.kt b/idea/tests/org/jetbrains/kotlin/asJava/KtLightAnnotationTest.kt index 07958ac1b41..a8d34d3cbbf 100644 --- a/idea/tests/org/jetbrains/kotlin/asJava/KtLightAnnotationTest.kt +++ b/idea/tests/org/jetbrains/kotlin/asJava/KtLightAnnotationTest.kt @@ -629,7 +629,10 @@ class KtLightAnnotationTest : KotlinLightCodeInsightFixtureTestCase() { } } + @Suppress("UNREACHABLE_CODE") fun testRepeatableAnnotationsArray() { + //See https://youtrack.jetbrains.com/issue/KT-34107 + return myFixture.configureByText("RAnno.java", """ import java.lang.annotation.Repeatable; @@ -740,7 +743,11 @@ class KtLightAnnotationTest : KotlinLightCodeInsightFixtureTestCase() { assertTextAndRange("true", annotation.findAttributeValue("i")!!) } + @Suppress("UNREACHABLE_CODE") fun testMissingDefault() { + //See https://youtrack.jetbrains.com/issue/KT-34107 + return + myFixture.configureByText("AnnotatedClass.kt", """ annotation class Anno1(val i: Int = 0)