9688c3e761
Merge-request: KT-MR-14244 Merged-by: Pavel Mikhailovskii <Pavel.Mikhailovskii@jetbrains.com>
84 lines
1.2 KiB
Plaintext
Vendored
84 lines
1.2 KiB
Plaintext
Vendored
package test;
|
|
|
|
/**
|
|
* public final class test/Bar : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@lib.Anno(impls = {lib.impl.Impl.class, ABC.class})
|
|
public final class Bar {
|
|
|
|
public Bar() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
/**
|
|
* public final class test/Boo : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@lib.Anno(impls = {lib.impl.Impl.class})
|
|
public final class Boo {
|
|
|
|
public Boo() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
/**
|
|
* public final class test/Foo : kotlin/Any {
|
|
*
|
|
* // signature: <init>()V
|
|
* public constructor()
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@lib.Anno(impls = {lib.impl.Impl.class})
|
|
public final class Foo {
|
|
|
|
public Foo() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
|
|
////////////////////
|
|
|
|
package test;
|
|
|
|
/**
|
|
* package {
|
|
*
|
|
* public typealias Joo = lib/impl/Impl (* = lib/impl/Impl *)
|
|
*
|
|
* // module name: main
|
|
* }
|
|
*/
|
|
@kotlin.Metadata()
|
|
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE", "ANNOTATION_ARGUMENT_MUST_BE_CONST", "NON_CONST_VAL_USED_IN_CONSTANT_EXPRESSION"})
|
|
public final class TestKt {
|
|
}
|