6 lines
218 B
Kotlin
Vendored
6 lines
218 B
Kotlin
Vendored
annotation class MyReceiverAnnotation(val name: String = "")
|
|
|
|
fun @receiver:MyReceiverAnnotation String.foo() = this.length
|
|
|
|
val @receiver:MyReceiverAnnotation("RegExp") String.rx : Regex
|
|
get() { return toRegex() } |