mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
- test Jvm* annotations with wrong arguments - test JvmStatic annotation - test JvmName annotation
16 lines
156 B
Kotlin
Vendored
16 lines
156 B
Kotlin
Vendored
// A
|
|
|
|
class A {
|
|
companion object {
|
|
@JvmStatic fun f() {
|
|
|
|
}
|
|
}
|
|
|
|
object B {
|
|
@JvmStatic
|
|
fun g() {
|
|
|
|
}
|
|
}
|
|
} |