Files
kotlin-fork/idea/testData/codeInsight/generate/secondaryConstructors/primaryExists.kt
T

13 lines
210 B
Kotlin
Vendored

// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction
// NOT_APPLICABLE
class Foo(x: Int) {<caret>
val x: Int
fun foo() {
}
fun bar() {
}
}