Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/annotations/prohibitPositionedArgument/kotlinAnnotation.kt
T

7 lines
201 B
Kotlin
Vendored

// FIR_IDENTICAL
annotation class Ann(val x: Int, val value: String, val y: Double)
@Ann(value = "a", x = 1, y = 1.0) fun foo1() {}
@Ann(2, "b", 2.0) fun foo2() {}
@Ann(3, "c", y = 2.0) fun foo3() {}