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 { class Bar {
companion object { companion object {
val testValue = "foobar" @JvmStatic
@JvmStatic get() { val testValue get() = "foobar"
}
} }
} }
@@ -17,9 +17,8 @@ public class Foo {
package foo package foo
object Bar { object Bar {
val testValue = "foobar" @JvmStatic
@JvmStatic get() { val testValue get() = "foobar"
}
} }
// FILE: bar/Foo.after.java // FILE: bar/Foo.after.java