Files
kotlin/compiler/testData/codegen/bytecodeListing/annotations/onReceiver.kt
2016-03-11 15:20:32 +03:00

15 lines
252 B
Kotlin
Vendored

annotation class Ann
class A {
fun @receiver:Ann String.f(): String = ""
val @receiver:Ann String?.p: String
get() = ""
}
fun @receiver:Ann String?.topLevelF(): String = ""
val @receiver:Ann String.topLevelP: String
get() = ""