diff --git a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-1.jar b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-1.jar index 0855961612f..638144d94a4 100644 Binary files a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-1.jar and b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-1.jar differ diff --git a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-2.jar b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-2.jar index 0855961612f..638144d94a4 100644 Binary files a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-2.jar and b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibTest-2.jar differ diff --git a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.kt b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.kt index 5472bfb0085..081589d0337 100644 --- a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.kt +++ b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.kt @@ -2,4 +2,8 @@ package test import testing.* -val testObjectProperty = TopLevelObject \ No newline at end of file +val testObjectProperty = TopLevelObject + +val outer = Outer() +val inn3r = Outer().Inner() +val nested = Outer.Nested() diff --git a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.txt b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.txt index d36b3924312..5962718cbf1 100644 --- a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.txt +++ b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateLibraries.txt @@ -1,3 +1,6 @@ package test +internal val inn3r: testing.Outer.Inner +internal val nested: testing.Outer.Nested +internal val outer: testing.Outer internal val testObjectProperty: testing.TopLevelObject diff --git a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateTest.kt.txt b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateTest.kt.txt index e3b8606e6af..96fd72e944e 100644 --- a/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateTest.kt.txt +++ b/compiler/testData/compileKotlinAgainstCustomJava/duplicateLibraries/DuplicateTest.kt.txt @@ -1,3 +1,8 @@ package testing -object TopLevelObject \ No newline at end of file +object TopLevelObject + +class Outer { + inner class Inner + class Nested +}