summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/refactoring/extractFunction/parameters/candidateTypes/liftAnonymousToSupertype1.kt.after
blob: 87067bb7987d40fef5e117efaccc9370f2ce74e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PARAM_DESCRIPTOR: local final class <no name provided> defined in x
// PARAM_TYPES: kotlin.Any
// WITH_RUNTIME

// SIBLING:
val x = object {
    fun test() {
        __dummyTestFun__()
    }
}

private fun Any.__dummyTestFun__() {
    println(this)
}