Fix invalid test data for static import quick fix

This commit is contained in:
Igor Yakovlev
2019-04-30 13:17:48 +03:00
parent 9870585eb8
commit 0d31df7fb7
2 changed files with 4 additions and 6 deletions
@@ -18,9 +18,8 @@ package foo
class Bar {
companion object {
val testValue = "foobar"
@JvmStatic get() {
}
@JvmStatic
val testValue get() = "foobar"
}
}