Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
resolveAnnotations
/
parameters
/
long.kt
blob: 716c261da680e6a4a42967ca96d7d93f499555cf [
file
] [
log
] [
blame
]
package
test
annotation
class
Ann
(
val b1
:
Long
,
val b2
:
Long
)
@Ann
(
1
,
1.toLong
())
class
MyClass
// EXPECTED: @Ann(b1 = 1.toLong(), b2 = 1.toLong())