mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
- test Jvm* annotations with wrong arguments - test JvmStatic annotation - test JvmName annotation
10 lines
371 B
Java
Vendored
10 lines
371 B
Java
Vendored
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 */ }
|
|
}
|