Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/receiverParameterWithAnnotations.kt
T
Dmitrii Gridin 33281770c7 [FIR IR] support FirReceiverParameter
^KT-54417
2022-11-17 09:50:11 +00:00

16 lines
269 B
Kotlin
Vendored

// FIR_IDENTICAL
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() = ""