2849e45111
To be consistent with test data of other compiler tests.
186 lines
4.0 KiB
Plaintext
Vendored
186 lines
4.0 KiB
Plaintext
Vendored
@kotlin.Metadata()
|
|
public final class Test {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final Test.Companion.Example foo;
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test.Companion Companion = null;
|
|
|
|
public Test() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static enum Example {
|
|
/*public static final*/ FOO /* = new Example() */;
|
|
|
|
Example() {
|
|
}
|
|
|
|
public static kotlin.enums.EnumEntries<Test.Companion.Example> getEntries() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
@kotlin.Metadata()
|
|
public final class Test2 {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final Test2.Amigo.Example foo;
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test2.Amigo Amigo = null;
|
|
|
|
public Test2() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Amigo {
|
|
|
|
private Amigo() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static enum Example {
|
|
/*public static final*/ FOO /* = new Example() */;
|
|
|
|
Example() {
|
|
}
|
|
|
|
public static kotlin.enums.EnumEntries<Test2.Amigo.Example> getEntries() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
@kotlin.Metadata()
|
|
public final class Test3 {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final Test3.Amigo.Example foo = Test3.Amigo.Example.FOO;
|
|
|
|
public Test3() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Amigo {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test3.Amigo INSTANCE = null;
|
|
|
|
private Amigo() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static enum Example {
|
|
/*public static final*/ FOO /* = new Example() */;
|
|
|
|
Example() {
|
|
}
|
|
|
|
public static kotlin.enums.EnumEntries<Test3.Amigo.Example> getEntries() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
@kotlin.Metadata()
|
|
public final class Test4 {
|
|
private final int foo = 1;
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test4.Companion Companion = null;
|
|
|
|
public Test4() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Foo {
|
|
public static final int constProperty = 1;
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test4.Companion.Foo INSTANCE = null;
|
|
|
|
private Foo() {
|
|
super();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////
|
|
|
|
|
|
@kotlin.Metadata()
|
|
public final class Test5 {
|
|
@org.jetbrains.annotations.NotNull()
|
|
private final Test5.Amigos.Companion.Goo.Example foo;
|
|
|
|
public Test5() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Amigos {
|
|
@org.jetbrains.annotations.NotNull()
|
|
public static final Test5.Amigos.Companion Companion = null;
|
|
|
|
public Amigos() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Companion {
|
|
|
|
private Companion() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static final class Goo {
|
|
|
|
public Goo() {
|
|
super();
|
|
}
|
|
|
|
@kotlin.Metadata()
|
|
public static enum Example {
|
|
/*public static final*/ FOO /* = new Example() */;
|
|
|
|
Example() {
|
|
}
|
|
|
|
public static kotlin.enums.EnumEntries<Test5.Amigos.Companion.Goo.Example> getEntries() {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|