Files
kotlin/compiler/testData/codegen/bytecodeListing/annotations/onReceiver.kt

14 lines
263 B
Kotlin
Vendored

public annotation class Ann
public 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() = ""