c251eb19a6
In this commit, .ir.txt expectation test data files for the JVM IR backend are renamed to .txt. This is done as two separate commits so that Git would recognize that these files were logically moved, not that the contents of the original .txt files were changed. #KT-64680
19 lines
444 B
Plaintext
Vendored
19 lines
444 B
Plaintext
Vendored
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;
|
|
}
|
|
}
|