Files
kotlin-fork/plugins/uast-kotlin/testData/ReceiverFun.kt
T

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() }