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
@@ -0,0 +1,12 @@
// C
class C {
@JvmName("myFun")
fun g(c: C) {
}
@JvmName("myFun")
fun z(c: C, c2: C) {
}
}