Light class tests: add tests

- test Jvm* annotations with wrong arguments
  - test JvmStatic annotation
  - test JvmName annotation
This commit is contained in:
Pavel V. Talanov
2017-02-13 19:11:27 +03:00
parent dbcd141a46
commit 955fe9e1e6
9 changed files with 172 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
// A
class A {
companion object {
@JvmStatic fun f() {
}
}
object B {
@JvmStatic
fun g() {
}
}
}