bd7e5fd324
^KTIJ-24119
24 lines
485 B
Java
Vendored
24 lines
485 B
Java
Vendored
public final class C /* C*/ {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final C.Companion Companion;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final C.Factory Factory;
|
|
|
|
public C();// .ctor()
|
|
|
|
class Companion ...
|
|
|
|
class Factory ...
|
|
}
|
|
|
|
public static final class Companion /* C.Companion*/ {
|
|
private Companion();// .ctor()
|
|
|
|
public final void bar();// bar()
|
|
}
|
|
|
|
public static final class Factory /* C.Factory*/ {
|
|
private Factory();// .ctor()
|
|
}
|