Files
kotlin-fork/plugins/uast-kotlin/testData/ReceiverFun.kt
T
Jinseong Jeon 7f627ab480 FIR UAST: track all legacy test data since facade class is converted
These are mostly mechanical changes.
2021-05-06 20:19:29 +02:00

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