480982b690
#KT-17526 Fixed
12 lines
210 B
Plaintext
Vendored
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)
|
|
}
|
|
} |