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

87 lines
2.1 KiB
Plaintext
Vendored

/**
* public final class Foo : kotlin/Any {
*
* // signature: <init>()V
* public constructor()
*
* // field: bar$delegate:Lkotlin/Lazy;
* // getter: getBar()Ljava/lang/Object;
* private final (* delegated *) val bar: kotlin/Any
* private final (* non-default *) get
*
* // field: baz$delegate:Lkotlin/Lazy;
* // getter: getBaz()Ljava/lang/Object;
* private final (* delegated *) val baz: kotlin/Any
* private final (* non-default *) get
*
* // field: foo$delegate:Lkotlin/Lazy;
* // getter: getFoo()Ljava/lang/Runnable;
* private final (* delegated *) val foo: java/lang/Runnable
* private final (* non-default *) get
*
* // field: generic1$delegate:Lkotlin/Lazy;
* // getter: getGeneric1()LGenericIntf;
* private final (* delegated *) val generic1: GenericIntf<kotlin/CharSequence>
* private final (* non-default *) get
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class Foo {
@org.jetbrains.annotations.NotNull()
private final kotlin.Lazy foo$delegate = null;
@org.jetbrains.annotations.NotNull()
private final kotlin.Lazy bar$delegate = null;
@org.jetbrains.annotations.NotNull()
private final kotlin.Lazy baz$delegate = null;
@org.jetbrains.annotations.NotNull()
private final kotlin.Lazy generic1$delegate = null;
public Foo() {
super();
}
private final java.lang.Runnable getFoo() {
return null;
}
private final java.lang.Object getBar() {
return null;
}
private final java.lang.Object getBaz() {
return null;
}
private final GenericIntf<java.lang.CharSequence> getGeneric1() {
return null;
}
}
////////////////////
/**
* public abstract interface GenericIntf<T#0 (* T *)> : kotlin/Any {
*
* // module name: main
* }
*/
@kotlin.Metadata()
public abstract interface GenericIntf<T extends java.lang.Object> {
}
////////////////////
/**
* public abstract interface Intf : kotlin/Any {
*
* // module name: main
* }
*/
@kotlin.Metadata()
public abstract interface Intf {
}