Files
kotlin/compiler/testData/asJava/lightClasses/JvmNameOnMember.kt
Pavel V. Talanov 955fe9e1e6 Light class tests: add tests
- test Jvm* annotations with wrong arguments
  - test JvmStatic annotation
  - test JvmName annotation
2017-03-15 20:52:24 +03:00

12 lines
118 B
Kotlin
Vendored

// C
class C {
@JvmName("myFun")
fun g(c: C) {
}
@JvmName("myFun")
fun z(c: C, c2: C) {
}
}