530725c6bf
In addition to ceedad40f3, do not generate bodies of constructors which
delegate to super.
#KT-58226 Fixed
20 lines
463 B
Plaintext
Vendored
20 lines
463 B
Plaintext
Vendored
@kotlin.Metadata()
|
|
public enum Foo {
|
|
/*public static final*/ BLA /* = new Foo() */;
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String bla = null;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getBla() {
|
|
return null;
|
|
}
|
|
|
|
Foo(java.lang.String bla) {
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static kotlin.enums.EnumEntries<Foo> getEntries() {
|
|
return null;
|
|
}
|
|
}
|