mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
10 lines
189 B
Kotlin
Vendored
10 lines
189 B
Kotlin
Vendored
package test
|
|
|
|
annotation class Ann(
|
|
val b1: Float,
|
|
val b2: Float
|
|
)
|
|
|
|
@Ann(1.toFloat(), 1.0.toFloat()) class MyClass
|
|
|
|
// EXPECTED: @Ann(b1 = 1.0.toFloat(), b2 = 1.0.toFloat()) |