Files
kotlin/compiler/testData/codegen/light-analysis/reflection/createAnnotation/primitivesAndArrays.txt
2016-12-05 20:10:32 +03:00

28 lines
984 B
Plaintext
Vendored

@java.lang.annotation.Retention
public annotation class Anno {
public abstract method b(): byte
public abstract method ba(): byte[]
public abstract method c(): char
public abstract method ca(): char[]
public abstract method d(): double
public abstract method da(): double[]
public abstract method f(): float
public abstract method fa(): float[]
public abstract method i(): int
public abstract method ia(): int[]
public abstract method j(): long
public abstract method ja(): long[]
public abstract method s(): short
public abstract method sa(): short[]
public abstract method str(): java.lang.String
public abstract method stra(): java.lang.String[]
public abstract method z(): boolean
public abstract method za(): boolean[]
}
public final class PrimitivesAndArraysKt {
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
public final static @Anno method foo(): void
}