Light class tests: add tests
- test Jvm* annotations with wrong arguments - test JvmStatic annotation - test JvmName annotation
This commit is contained in:
@@ -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 */ }
|
||||
}
|
||||
Reference in New Issue
Block a user