diff --git a/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInClassStaticFields.txt b/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInClassStaticFields.txt index a1c01812abb..1d6cc2b758c 100644 --- a/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInClassStaticFields.txt +++ b/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInClassStaticFields.txt @@ -4,7 +4,7 @@ public final class Test : R|kotlin/Any| { public final companion object Companion : R|kotlin/Any| { public final fun incProp4(): R|kotlin/Unit| - public final const val constProp8: R|kotlin/Int| + public final const val constProp8: R|kotlin/Int| = Int(80) public get(): R|kotlin/Int| public final val prop1: R|kotlin/Int| diff --git a/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInTraitStaticFields.txt b/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInTraitStaticFields.txt index d6ff42670cd..7d0f72283c6 100644 --- a/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInTraitStaticFields.txt +++ b/compiler/fir/analysis-tests/testData/loadCompiledKotlin/classObject/ClassObjectInTraitStaticFields.txt @@ -2,7 +2,7 @@ public abstract interface Test : R|kotlin/Any| { public final companion object Companion : R|kotlin/Any| { public final fun incProp4(): R|kotlin/Unit| - public final const val constProp8: R|kotlin/Int| + public final const val constProp8: R|kotlin/Int| = Int(80) public get(): R|kotlin/Int| public final val prop1: R|kotlin/Int| diff --git a/compiler/fir/analysis-tests/testData/loadCompiledKotlin/prop/Const.txt b/compiler/fir/analysis-tests/testData/loadCompiledKotlin/prop/Const.txt index 2bc64f33e50..9314e8c0753 100644 --- a/compiler/fir/analysis-tests/testData/loadCompiledKotlin/prop/Const.txt +++ b/compiler/fir/analysis-tests/testData/loadCompiledKotlin/prop/Const.txt @@ -1,5 +1,5 @@ public final object A : R|kotlin/Any| { - internal final const val inObject: R|kotlin/Int| + internal final const val inObject: R|kotlin/Int| = Int(2) internal get(): R|kotlin/Int| private constructor(): R|test/A| @@ -10,7 +10,7 @@ public final class B : R|kotlin/Any| { public constructor(): R|test/B| public final companion object Companion : R|kotlin/Any| { - public final const val inCompanion: R|kotlin/Int| + public final const val inCompanion: R|kotlin/Int| = Int(3) public get(): R|kotlin/Int| private constructor(): R|test/B.Companion|