Fix misconfigured widerVisibilityInActualClassifier test

^KT-59977 Fixed
Review: https://jetbrains.team/p/kt/reviews/12807/timeline
This commit is contained in:
Nikita Bobko
2023-10-31 17:46:32 +01:00
committed by teamcity
parent e473b52da7
commit 173651eb5c
2 changed files with 4 additions and 2 deletions
@@ -1,6 +1,7 @@
// ISSUE: KT-59355
// MODULE: common
// TARGET_PLATFORM: Common
internal expect open class Some {
protected class ProtectedNested
internal class InternalNested
@@ -1,7 +1,8 @@
// ISSUE: KT-59355
// MODULE: common
internal expect open class <!NO_ACTUAL_FOR_EXPECT!>Some<!> {
// TARGET_PLATFORM: Common
internal expect open class Some {
protected class ProtectedNested
internal class InternalNested
@@ -10,7 +11,7 @@ internal expect open class <!NO_ACTUAL_FOR_EXPECT!>Some<!> {
protected fun protectedFun()
}
internal expect open class <!NO_ACTUAL_FOR_EXPECT!>Other<!> {
internal expect open class Other {
protected class ProtectedNested
internal class InternalNested
}