mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
15 lines
264 B
Kotlin
Vendored
15 lines
264 B
Kotlin
Vendored
package test
|
|
|
|
annotation class IntAnno
|
|
annotation class StringAnno
|
|
annotation class DoubleAnno
|
|
|
|
@[IntAnno] val Int.extension: Int
|
|
get() = this
|
|
|
|
@[StringAnno] val String.extension: String
|
|
get() = this
|
|
|
|
@[DoubleAnno] val Double.extension: Int
|
|
get() = 42
|