diff --git a/klib/src/test/kotlin/org/jetbrains/kotlin/cli/klib/test/ContentsTest.kt b/klib/src/test/kotlin/org/jetbrains/kotlin/cli/klib/test/ContentsTest.kt index ab55d672b03..64ea0c3633c 100644 --- a/klib/src/test/kotlin/org/jetbrains/kotlin/cli/klib/test/ContentsTest.kt +++ b/klib/src/test/kotlin/org/jetbrains/kotlin/cli/klib/test/ContentsTest.kt @@ -325,9 +325,9 @@ class ContentsTest { fun topLevelPropertiesWithClassesCustomPackage() = klibContents(testLibrary("TopLevelPropertiesWithClassesCustomPackage")) { """ package custom.pkg { + typealias MyTransformer = (String) -> Int object Bar class Foo constructor() - typealias MyTransformer = (String) -> Int } package custom.pkg { @@ -343,9 +343,9 @@ class ContentsTest { fun topLevelPropertiesWithClassesRootPackage() = klibContents(testLibrary("TopLevelPropertiesWithClassesRootPackage")) { """ package { + typealias MyTransformer = (String) -> Int object Bar class Foo constructor() - typealias MyTransformer = (String) -> Int } package {