Files
kotlin-fork/compiler/testData/resolveAnnotations/parameters/expressions/paranthesized.kt
T

8 lines
118 B
Kotlin
Vendored

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