Revert "Minor: cover negative cases with test +m"

This reverts commit 04a4f9cd
This commit is contained in:
Victor Petukhov
2020-12-16 10:24:12 +03:00
parent 5a9ff3471a
commit 94deddef7f
4 changed files with 6 additions and 83 deletions
@@ -26,31 +26,4 @@ class WithPrivateCompanion {
<!JVM_STATIC_IN_PRIVATE_COMPANION!>@JvmStatic<!>
fun staticFunction() {}
}
}
class WithPublicCompanion {
companion object {
@JvmStatic
val staticVal1: Int = 42
val staticVal2: Int
@JvmStatic get() = 42
@get:JvmStatic
val staticVal3: Int = 42
@JvmStatic
var staticVar1: Int = 42
var staticVar2: Int
@JvmStatic get() = 42
@JvmStatic set(value) {}
@get: JvmStatic
@set: JvmStatic
var staticVar3: Int = 42
@JvmStatic
fun staticFunction() {}
}
}
}