Files
kotlin-fork/compiler/testData/lazyResolve/namespaceComparator/enum.txt
T
Evgeny Gerashchenko 5e5cd86194 Regenerated test data.
2012-12-20 18:48:47 +04:00

25 lines
1.3 KiB
Plaintext

namespace test
internal final enum class test.Test : jet.Enum<test.Test> {
private final /*primary constructor*/ fun <init>(/*0*/ a: jet.Int): test.Test
public final override /*1*/ /*fake_override*/ fun name(): jet.String
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
internal final class object test.Test.<class-object-for-Test> {
private final /*constructor*/ fun <init>(): test.Test.<class-object-for-Test>
public final val A: test.Test
public final val B: test.Test
private final enum entry test.Test.<class-object-for-Test>.A : test.Test {
private final /*constructor*/ fun <init>(): test.Test.<class-object-for-Test>.A
public final override /*1*/ /*fake_override*/ fun name(): jet.String
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
}
private final enum entry test.Test.<class-object-for-Test>.B : test.Test {
private final /*constructor*/ fun <init>(): test.Test.<class-object-for-Test>.B
public final override /*1*/ /*fake_override*/ fun name(): jet.String
public final override /*1*/ /*fake_override*/ fun ordinal(): jet.Int
}
public final fun valueOf(/*0*/ value: jet.String): test.Test
public final fun values(): jet.Array<test.Test>
}
}