Files
kotlin/idea/testData/refactoring/extractFunction/parameters/misc/thisInObject.kt.after
2015-01-12 22:55:33 +03:00

13 lines
143 B
Plaintext
Vendored

package p
// SIBLING:
object O {
val a = 1
fun test() {
__dummyTestFun__()
}
}
private fun __dummyTestFun__() {
O.a
}