15 lines
162 B
Kotlin
Vendored
15 lines
162 B
Kotlin
Vendored
package test
|
|
|
|
class Conflict(i: Int) {
|
|
companion object {
|
|
operator fun invoke() {}
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
class Conflict
|
|
|
|
<caret>Conflict()
|
|
}
|
|
|