Files
strangepleasures 2423b7b62f [KAPT4] KT-51982 Implement generation of @Metadata annotations in Java stubs
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>
2023-08-17 21:43:54 +00:00

28 lines
470 B
Plaintext
Vendored

package a.b.c;
/**
* package {
*
* // signature: foo()V
* public final fun foo(): kotlin/Unit
*
* // field: bar:I
* public final const val bar: kotlin/Int (* = ... *)
* public final get
*
* // module name: main
* }
*/
@kotlin.Metadata()
@kotlin.jvm.JvmName(name = "FacadeName")
public final class FacadeName {
public FacadeName() {
super();
}
public static final int bar = 3;
public static final void foo() {
}
}