Files
kotlin-fork/idea/resources/intentionDescriptions/MoveMemberOutOfCompanionObjectIntention/before.kt.template
T
2016-02-04 12:26:19 +03:00

7 lines
96 B
Plaintext

class A {
companion object {
<spot>fun foo() = 1</spot>
}
}
fun bar() = A.foo()