Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/kt28306.fir.txt
T
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

33 lines
647 B
Plaintext
Vendored

package foo;
/**
* public abstract interface foo/InterfaceWithDefaults<T#0 (* T *)> : kotlin/Any {
*
* // signature: foo()V
* public open fun foo(): kotlin/Unit
*
* // module name: main
* }
*/
@kotlin.Metadata()
public abstract interface InterfaceWithDefaults<T extends java.lang.Object> {
public default void foo() {
}
}
////////////////////
package foo;
/**
* public abstract interface foo/SubInterface<T#0 (* T *)> : foo/InterfaceWithDefaults<T#0> {
*
* // module name: main
* }
*/
@kotlin.Metadata()
public abstract interface SubInterface<T extends java.lang.Object> extends foo.InterfaceWithDefaults<T> {
}