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
12 lines
118 B
Kotlin
Vendored
12 lines
118 B
Kotlin
Vendored
// C
|
|
class C {
|
|
@JvmName("myFun")
|
|
fun g(c: C) {
|
|
|
|
}
|
|
|
|
@JvmName("myFun")
|
|
fun z(c: C, c2: C) {
|
|
|
|
}
|
|
} |