[kotlin] fix test data

- new constant evaluation disregards unresolved references

KT-68923

GitOrigin-RevId: 68c3fad179292c9e335b074ff88b90c0549651ec
This commit is contained in:
Anna Kozlova
2025-07-14 20:12:03 +00:00
committed by intellij-monorepo-bot
parent 2af4b7e5a2
commit 5795a4c736
2 changed files with 2 additions and 2 deletions
@@ -2,5 +2,5 @@
val a = 1
fun foo(): Int {
return <selection>1.inv(1)</selection>
return <selection>1.inv()</selection>
}
@@ -1,7 +1,7 @@
// EXTRACTION_TARGET: property with initializer
val a = 1
private const val i = 1.inv(1)
private const val i = 1.inv()
fun foo(): Int {
return i