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

33 lines
388 B
Plaintext
Vendored

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