Update testdata according to behavior changes

This commit is contained in:
Dmitry Jemerov
2017-06-08 10:43:19 +02:00
parent d90cc6f4cf
commit 2326b5faf3
3 changed files with 3 additions and 3 deletions
@@ -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,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