Files
kotlin-fork/idea/testData/shortenRefsFir/calls/extenstionFunctionOnCompanionObjectReceiverNotShortened.kt.after
T

12 lines
119 B
Plaintext
Vendored

// FIR_COMPARISON
package test
class T {
companion object
}
fun T.Companion.ext() {}
fun usage() {
T.ext()
}