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,9 @@
public final class C {
@kotlin.jvm.JvmName(name = "myFun")
public final void myFun(@org.jetbrains.annotations.NotNull C c) { /* compiled code */ }
@kotlin.jvm.JvmName(name = "myFun")
public final void myFun(@org.jetbrains.annotations.NotNull C c, @org.jetbrains.annotations.NotNull C c2) { /* compiled code */ }
public C() { /* compiled code */ }
}