Files
kotlin-fork/compiler/testData/ir/irText/declarations/annotations/receiverParameterWithAnnotations.kt.txt
T
2021-09-23 06:59:33 +00:00

36 lines
436 B
Kotlin
Vendored

open annotation class Ann : Annotation {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
}
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 ""
}