Files
Alexander Udalov c251eb19a6 Kapt: remove old JVM backend test data (2/2)
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
2024-01-03 19:37:40 +00:00

118 lines
3.4 KiB
Plaintext
Vendored

/**
* public final data class User : kotlin/Any {
*
* // signature: <init>(Ljava/lang/String;Ljava/lang/String;I)V
* public constructor(firstName: kotlin/String, secondName: kotlin/String, age: kotlin/Int)
*
* // signature: component1()Ljava/lang/String;
* public final (* synthesized *) operator fun component1(): kotlin/String
*
* // signature: component2()Ljava/lang/String;
* public final (* synthesized *) operator fun component2(): kotlin/String
*
* // signature: component3()I
* public final (* synthesized *) operator fun component3(): kotlin/Int
*
* // signature: copy(Ljava/lang/String;Ljava/lang/String;I)LUser;
* public final (* synthesized *) fun copy(firstName: kotlin/String (* = ... *), secondName: kotlin/String (* = ... *), age: kotlin/Int (* = ... *)): User
*
* // signature: equals(Ljava/lang/Object;)Z
* public open (* synthesized *) operator fun equals(other: kotlin/Any?): kotlin/Boolean
*
* // signature: hashCode()I
* public open (* synthesized *) fun hashCode(): kotlin/Int
*
* // signature: procedure()V
* public final fun procedure(): kotlin/Unit
*
* // signature: toString()Ljava/lang/String;
* public open (* synthesized *) fun toString(): kotlin/String
*
* // field: age:I
* // getter: getAge()I
* public final val age: kotlin/Int
* public final get
*
* // field: firstName:Ljava/lang/String;
* // getter: getFirstName()Ljava/lang/String;
* public final val firstName: kotlin/String
* public final get
*
* // field: secondName:Ljava/lang/String;
* // getter: getSecondName()Ljava/lang/String;
* public final val secondName: kotlin/String
* public final get
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class User {
@org.jetbrains.annotations.NotNull()
private final java.lang.String firstName = null;
@org.jetbrains.annotations.NotNull()
private final java.lang.String secondName = null;
private final int age = 0;
public User(@org.jetbrains.annotations.NotNull()
java.lang.String firstName, @org.jetbrains.annotations.NotNull()
java.lang.String secondName, int age) {
super();
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFirstName() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String getSecondName() {
return null;
}
public final int getAge() {
return 0;
}
public final void procedure() {
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String component1() {
return null;
}
@org.jetbrains.annotations.NotNull()
public final java.lang.String component2() {
return null;
}
public final int component3() {
return 0;
}
@org.jetbrains.annotations.NotNull()
public final User copy(@org.jetbrains.annotations.NotNull()
java.lang.String firstName, @org.jetbrains.annotations.NotNull()
java.lang.String secondName, int age) {
return null;
}
@java.lang.Override()
public boolean equals(@org.jetbrains.annotations.Nullable()
java.lang.Object other) {
return false;
}
@java.lang.Override()
public int hashCode() {
return 0;
}
@java.lang.Override()
@org.jetbrains.annotations.NotNull()
public java.lang.String toString() {
return null;
}
}