Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/receiverParameterWithAnnotations.fir.kt.txt
T
2020-11-26 00:15:13 +03:00

32 lines
406 B
Plaintext
Vendored

annotation class Ann : Annotation {
constructor() /* primary */
}
class A {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun @Ann String.f(): String {
return ""
}
val @Ann String?.p: String
get(): String {
return ""
}
}
fun @Ann String?.topLevelF(): String {
return ""
}
val @Ann String.topLevelP: String
get(): String {
return ""
}