Files
kotlin/compiler/testData/asJava/lightClasses/JvmStatic.java
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

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 */ }
}
}