Files
kotlin-fork/compiler/testData/loadJava/compiledKotlinWithStdlib/annotations/parameters/EnumConstructor.fir.txt
T
Dmitriy Novozhilov 6287968511 [FIR Test] Migrate AbstractFirLoadCompiledKotlin to new test infrastructure
Also introduce two different modes for those tests:
- load metadata compiled with K1
- load metadata compiled with K2
2023-04-19 14:33:25 +00:00

30 lines
790 B
Plaintext
Vendored

public final annotation class A : R|kotlin/Annotation| {
public constructor(): R|test/A|
}
public final annotation class B : R|kotlin/Annotation| {
public constructor(): R|test/B|
}
public final enum class E : R|kotlin/Enum<test/E>| {
public final val x: R|kotlin/String|
public get(): R|kotlin/String|
public final val y: R|kotlin/Int|
public get(): R|kotlin/Int|
private constructor(@R|test/A|() x: R|kotlin/String|, @R|test/B|() y: R|kotlin/Int|): R|test/E|
public final static fun values(): R|kotlin/Array<test/E>| {
}
public final static fun valueOf(value: R|kotlin/String|): R|test/E| {
}
public final static val entries: R|kotlin/enums/EnumEntries<test/E>|
public get(): R|kotlin/enums/EnumEntries<test/E>|
}