Update testdata according to behavior changes
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
// "Replace '@JvmField' with 'const'" "true"
|
// "Replace '@JvmField' with 'const'" "true"
|
||||||
// WITH_RUNTIME
|
// WITH_RUNTIME
|
||||||
object Foo {
|
object Foo {
|
||||||
const private val a = "Lorem ipsum"
|
private const val a = "Lorem ipsum"
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
// "Replace '@JvmField' with 'const'" "true"
|
// "Replace '@JvmField' with 'const'" "true"
|
||||||
// WITH_RUNTIME
|
// WITH_RUNTIME
|
||||||
const val three = 3
|
const val three = 3
|
||||||
const private val text = "${2 + three}"
|
private const val text = "${2 + three}"
|
||||||
@@ -1,3 +1,3 @@
|
|||||||
// "Replace '@JvmField' with 'const'" "true"
|
// "Replace '@JvmField' with 'const'" "true"
|
||||||
// WITH_RUNTIME
|
// WITH_RUNTIME
|
||||||
const private val number: Int = 42
|
private const val number: Int = 42
|
||||||
Reference in New Issue
Block a user