[K/N] Fix stdlib import in DiagnosticsNativeTests
Merge-request: KT-MR-11635 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
This commit is contained in:
committed by
Space Team
parent
97bbf69bdc
commit
8f03eb9314
@@ -50,6 +50,7 @@ package totally {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<totally.normal.pkg.`Check>Enum>Entry`>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): totally.normal.pkg.`Check>Enum>Entry`
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<totally.normal.pkg.`Check>Enum>Entry`>
|
||||
}
|
||||
|
||||
@@ -11,10 +11,10 @@ open class ProtectedInsideInlineError : ProtectedInsideInlineParent() {
|
||||
protected var protectedVar = 0
|
||||
protected fun protectedFun() = 0
|
||||
|
||||
inline fun publicInlineUserFun() {
|
||||
<!UNRESOLVED_REFERENCE!>println<!>(<!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>protectedVar<!> + <!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>protectedParentVar<!>)
|
||||
inline fun publicInlineUserFun(): Int {
|
||||
<!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>protectedFun<!>()
|
||||
<!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>protectedParentFun<!>()
|
||||
return <!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>protectedVar<!> + <!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>protectedParentVar<!>
|
||||
}
|
||||
|
||||
inline var publicInlineUserVal: Int
|
||||
|
||||
@@ -56,6 +56,7 @@ public open class Derived2 : Derived {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<EnumExactChecks>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): EnumExactChecks
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<EnumExactChecks>
|
||||
}
|
||||
|
||||
@@ -140,6 +140,7 @@ internal final class InternalInheritsFromNested : OuterHidden.Nested.Nested {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<MyHiddenEnum>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): MyHiddenEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<MyHiddenEnum>
|
||||
}
|
||||
@@ -162,6 +163,7 @@ internal final class InternalInheritsFromNested : OuterHidden.Nested.Nested {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<MyHiddenNonTrivialEnum>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): MyHiddenNonTrivialEnum
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<MyHiddenNonTrivialEnum>
|
||||
}
|
||||
|
||||
@@ -54,6 +54,7 @@ public final class Bar2 {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<Color>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): Color
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<Color>
|
||||
}
|
||||
@@ -76,6 +77,7 @@ public final enum class Color1 : kotlin.Enum<Color1> {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<Color1>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): Color1
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<Color1>
|
||||
}
|
||||
@@ -98,6 +100,7 @@ public final enum class Color2 : kotlin.Enum<Color2> {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<Color2>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): Color2
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<Color2>
|
||||
}
|
||||
@@ -120,6 +123,7 @@ public final enum class Color3 : kotlin.Enum<Color3> {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<Color3>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): Color3
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<Color3>
|
||||
}
|
||||
@@ -142,6 +146,7 @@ public final enum class Color4 : kotlin.Enum<Color4> {
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public final /*synthesized*/ val entries: kotlin.enums.EnumEntries<Color4>
|
||||
public final /*synthesized*/ fun valueOf(/*0*/ value: kotlin.String): Color4
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<Color4>
|
||||
}
|
||||
@@ -215,3 +220,4 @@ package kotlin {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user