Files
kotlin-fork/analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/annotation.rendered
T
Ilya Kirillov 26ec7ec296 [Analysis API] update testdata after renderer rework
The new testdata seems to be more correct or just different

^KTIJ-23268
2022-11-11 11:59:59 +01:00

28 lines
333 B
Plaintext
Vendored

@Target(allowedTargets = [kotlin.annotation.AnnotationTarget.ANNOTATION_CLASS])
annotation class base
@base
annotation class derived
@base
class correct(@base x: Int) {
@base
constructor()
@base
val x: Int
}
@base
enum class My {
@base FIRST,
@base SECOND
}
@base
fun foo(@base y: @base Int): Int
@base
val z: Int