Files
kotlin-fork/compiler/testData/loadJava/compiledJava/annotations/PrimitiveValueInParam.fir.txt
T
pyos a12e31daf1 FIR: dump nested classes in loadJava tests
Because those test are single Java files, many of them use a top-level
class as a container for multiple classes to be tested. Such tests do
almost nothing if those nested classes aren't handled.
2021-08-27 18:03:01 +03:00

11 lines
542 B
Plaintext
Vendored

public abstract interface PrimitiveValueInParam : R|kotlin/Any| {
@R|test/PrimitiveValueInParam.Ann|(Int(1), Long(1), Double(1.0), Float(1.0), Boolean(true), String(str)) public open class A : R|kotlin/Any| {
public constructor(): R|test/PrimitiveValueInParam.A|
}
public final annotation class Ann : R|kotlin/Annotation| {
public constructor(i: R|kotlin/Int|, l: R|kotlin/Long|, d: R|kotlin/Double|, f: R|kotlin/Float|, bool: R|kotlin/Boolean|, str: R|kotlin/String|): R|test/PrimitiveValueInParam.Ann|
}
}