New IC: Add tests for constants-in-companion-objects impact computation

^KT-53266 Fixed
This commit is contained in:
Hung Nguyen
2022-08-09 11:49:28 +01:00
committed by Alexander Likhachev
parent 2ad047340f
commit bd085495bd
7 changed files with 65 additions and 23 deletions
@@ -0,0 +1,9 @@
package com.example
class SomeClass {
companion object CompanionObject {
const val constantChangedValue: Int = 1000
const val constantUnchanged: Int = 0
}
}
@@ -0,0 +1,9 @@
package com.example
class SomeClass {
companion object CompanionObject {
const val constantChangedValue: Int = 0
const val constantUnchanged: Int = 0
}
}