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
58 lines
1.4 KiB
Plaintext
Vendored
58 lines
1.4 KiB
Plaintext
Vendored
@kotlin.jvm.JvmInline()
|
|
/**
|
|
* public final value class Cl : kotlin/Any {
|
|
*
|
|
* // signature: constructor-impl(Ljava/lang/String;)Ljava/lang/String;
|
|
* public constructor(a: kotlin/String)
|
|
*
|
|
* // signature: equals-impl(Ljava/lang/String;Ljava/lang/Object;)Z
|
|
* public open (* synthesized *) operator fun equals(other: kotlin/Any?): kotlin/Boolean
|
|
*
|
|
* // signature: hashCode-impl(Ljava/lang/String;)I
|
|
* public open (* synthesized *) fun hashCode(): kotlin/Int
|
|
*
|
|
* // signature: toString-impl(Ljava/lang/String;)Ljava/lang/String;
|
|
* public open (* synthesized *) fun toString(): kotlin/String
|
|
*
|
|
* // field: a:Ljava/lang/String;
|
|
* // getter: getA()Ljava/lang/String;
|
|
* public final val a: kotlin/String
|
|
* public final get
|
|
*
|
|
* // underlying property: a
|
|
*
|
|
* // underlying type: kotlin/String
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public final class Cl {
|
|
|
|
public Cl() {
|
|
super();
|
|
}
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final java.lang.String a = null;
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getA() {
|
|
return null;
|
|
}
|
|
|
|
@java.lang.Override()
|
|
public boolean equals(java.lang.Object other) {
|
|
return false;
|
|
}
|
|
|
|
@java.lang.Override()
|
|
public int hashCode() {
|
|
return 0;
|
|
}
|
|
|
|
@java.lang.Override()
|
|
public java.lang.String toString() {
|
|
return null;
|
|
}
|
|
}
|