Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/onMultiDeclaration.kt
T
Denis Zharkov 849b8acbf8 Replace annotations with brackets in testData
Just in tests that changed after deprecation
2015-05-07 22:36:16 +03:00

7 lines
126 B
Kotlin
Vendored

fun test(): Any? {
@ann val (a, b) = P(1, 1)
return a + b
}
annotation class ann
data class P(val a: Int, val b: Int)