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

// SIBLING:
val x = object {
    fun test() {
        <selection>println(this)</selection>
    }
}