diff --git a/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/broken.jar b/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/broken.jar index c2a5635c1cf..dea7e1716a8 100644 Binary files a/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/broken.jar and b/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/broken.jar differ diff --git a/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/source.kt.txt b/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/source.kt.txt new file mode 100644 index 00000000000..1450e7bd3ee --- /dev/null +++ b/compiler/testData/compileKotlinAgainstBinariesCustom/brokenJarWithNoClassForObjectProperty/source.kt.txt @@ -0,0 +1,8 @@ +package test + +// To regenerate this test: +// 1. Compile this file +// 2. Delete test/Lol.class +// 3. Pack test/ into broken.jar + +public object Lol diff --git a/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/objectBinaries.jar b/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/objectBinaries.jar index afff7f23872..f59e659dc74 100644 Binary files a/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/objectBinaries.jar and b/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/objectBinaries.jar differ diff --git a/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/source.kt.txt b/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/source.kt.txt new file mode 100644 index 00000000000..af457125519 --- /dev/null +++ b/compiler/testData/compileKotlinAgainstBinariesCustom/duplicateObjectInBinaryAndSources/source.kt.txt @@ -0,0 +1,5 @@ +package test + +// To regenerate this test, compile this file into jar + +public object Lol diff --git a/idea/testData/codeInsight/overrideImplement/withLib/fakeOverride.jar b/idea/testData/codeInsight/overrideImplement/withLib/fakeOverride.jar index e1192002b8b..589ae2c8f41 100644 Binary files a/idea/testData/codeInsight/overrideImplement/withLib/fakeOverride.jar and b/idea/testData/codeInsight/overrideImplement/withLib/fakeOverride.jar differ diff --git a/idea/testData/codeInsight/overrideImplement/withLib/source.kt.txt b/idea/testData/codeInsight/overrideImplement/withLib/source.kt.txt new file mode 100644 index 00000000000..a58b06ca9df --- /dev/null +++ b/idea/testData/codeInsight/overrideImplement/withLib/source.kt.txt @@ -0,0 +1,7 @@ +package dependency + +// To regenerate this test, compile this file into jar + +public open class A { + public open fun foo() {} +}