New IC: Add tests for constants-in-companion-objects impact computation
^KT-53266 Fixed
This commit is contained in:
committed by
Alexander Likhachev
parent
2ad047340f
commit
bd085495bd
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+9
@@ -0,0 +1,9 @@
|
||||
package com.example
|
||||
|
||||
class SomeClass {
|
||||
|
||||
companion object CompanionObject {
|
||||
const val constantChangedValue: Int = 1000
|
||||
const val constantUnchanged: Int = 0
|
||||
}
|
||||
}
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
package com.example
|
||||
|
||||
class SomeClass {
|
||||
|
||||
companion object CompanionObject {
|
||||
const val constantChangedValue: Int = 0
|
||||
const val constantUnchanged: Int = 0
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user