Files
kotlin-fork/idea/testData/intentions/moveMemberToTopLevel/functionInCompanion.kt
T
shiraji 31a1fb916a Implement an intention action to move a companion object member to top level
#KT-18828 Fixed

(cherry picked from commit 11f8f8b)
2017-10-23 17:29:28 +03:00

7 lines
94 B
Kotlin
Vendored

// WITH_RUNTIME
class A {
companion object {
private fun <caret>foo() = 1
}
}