Remove leftovers of platformName and platformStatic in test data
Drop unnecessary imports, rename some tests
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
package test
|
||||
|
||||
class A {
|
||||
companion object {
|
||||
@JvmStatic val b: String = "OK"
|
||||
|
||||
var A.c: String
|
||||
@JvmStatic get() = "OK"
|
||||
@JvmStatic set(t: String) {}
|
||||
}
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
A.b
|
||||
with(A) {
|
||||
A().c
|
||||
A().c = "123"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user