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