Files
kotlin-fork/idea/testData/shortenRefs/shortCompanionRefInsideShortenedCall.kt.after
T
2017-04-24 20:52:11 +03:00

12 lines
210 B
Plaintext
Vendored

// REMOVE_COMPANION_REF
package test
class CompanionExtraPlain { companion object { val cmpVal = 1 } }
fun wrap(p: Int) = p + 1
class Dome {
fun refer() {
wrap(CompanionExtraPlain.cmpVal)
}
}