Files
kotlin-fork/compiler/testData/resolveAnnotations/parameters/expressions/paranthesized.kt
T
2014-01-14 16:37:50 +04:00

8 lines
139 B
Kotlin

package test
annotation class Ann(i: Int)
Ann((1 + 2) * 2) class MyClass
// EXPECTED: Ann(i = IntegerValueType(6): IntegerValueType(6))