summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/findUsages/kotlin/findWithStructuralGrouping/kotlinClassAllUsages.0.kt
blob: eaf364cffbe4298e072005b40652acf6ed6300a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtClass
// GROUPING_RULES: org.jetbrains.kotlin.idea.findUsages.KotlinDeclarationGroupingRule
// OPTIONS: usages, constructorUsages
package server

open class <caret>Server {
    companion object {
        val NAME = "Server"
    }

    open fun work() {
        println("Server")
    }
}

// FIR_COMPARISON