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
25 lines
602 B
Java
Vendored
25 lines
602 B
Java
Vendored
public final class A {
|
|
public static final A.Companion Companion;
|
|
|
|
public A() { /* compiled code */ }
|
|
|
|
@kotlin.jvm.JvmStatic
|
|
public static final void f() { /* compiled code */ }
|
|
|
|
public static final class B {
|
|
public static final A.B INSTANCE;
|
|
|
|
@kotlin.jvm.JvmStatic
|
|
public static final void g() { /* compiled code */ }
|
|
|
|
private B() { /* compiled code */ }
|
|
}
|
|
|
|
public static final class Companion {
|
|
@kotlin.jvm.JvmStatic
|
|
public final void f() { /* compiled code */ }
|
|
|
|
private Companion() { /* compiled code */ }
|
|
}
|
|
}
|