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
63 lines
1.4 KiB
Plaintext
Vendored
63 lines
1.4 KiB
Plaintext
Vendored
/**
|
|
* public final class Test : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // companion object: A
|
|
*
|
|
* // nested class: A
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public final class Test {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private static final java.lang.String test = "";
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test.A A = null;
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final java.lang.String getTest() {
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* public final companion object Test.A : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* private constructor()
|
|
*
|
|
* // field: test:Ljava/lang/String;
|
|
* // getter: getTest()Ljava/lang/String;
|
|
* // synthetic method for annotations: getTest$annotations()V
|
|
* public final val test: kotlin/String (* = ... *)
|
|
* public final get
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public static final class A {
|
|
|
|
private A() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getTest() {
|
|
return null;
|
|
}
|
|
|
|
@kotlin.jvm.JvmStatic()
|
|
@java.lang.Deprecated()
|
|
public static void getTest$annotations() {
|
|
}
|
|
}
|
|
}
|