2423b7b62f
Also adds rendering of @Metadata annotations in Kapt3 and Kapt4 tests (currently disabled for a few tests). Co-authored-by: Alexander Udalov <alexander.udalov@jetbrains.com>
46 lines
1.1 KiB
Plaintext
Vendored
46 lines
1.1 KiB
Plaintext
Vendored
/**
|
|
* public final class FunctionsTest : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // signature: f()Lkotlin/reflect/KProperty1;
|
|
* public final fun f(): kotlin/reflect/KProperty1<kotlin/String, kotlin/Int>
|
|
*
|
|
* // signature: f2()Lkotlin/jvm/functions/Function2;
|
|
* public final fun f2(): kotlin/Function2<kotlin/Int, kotlin/Int, kotlin/Boolean>
|
|
*
|
|
* // signature: f3()V
|
|
* public final fun f3(): kotlin/Unit
|
|
*
|
|
* // signature: f4()I
|
|
* public final fun f4(): kotlin/Int
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
public final class FunctionsTest {
|
|
|
|
public FunctionsTest() {
|
|
super();
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final kotlin.reflect.KProperty1<java.lang.String, java.lang.Integer> f() {
|
|
return null;
|
|
}
|
|
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final kotlin.jvm.functions.Function2<java.lang.Integer, java.lang.Integer, java.lang.Boolean> f2() {
|
|
return null;
|
|
}
|
|
|
|
public final void f3() {
|
|
}
|
|
|
|
public final int f4() {
|
|
return 0;
|
|
}
|
|
}
|