Files
strangepleasures 9688c3e761 [KAPT] Improve stub formatting; check raw stubs in tests
Merge-request: KT-MR-14244
Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
2024-02-09 15:41:37 +00:00

39 lines
484 B
Plaintext
Vendored

package test;
/**
* package {
*
* // signature: foo()V
* public final fun foo(): kotlin/Unit
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class AKt {
public static final void foo() {
}
}
////////////////////
package test;
/**
* package {
*
* // signature: bar()V
* public final fun bar(): kotlin/Unit
*
* // module name: main
* }
*/
@kotlin.Metadata()
public final class BKt {
public static final void bar() {
}
}