Files
kotlin/idea/testData/codeInsight/generate/secondaryConstructors/javaSupersWithGenerics.kt

12 lines
201 B
Kotlin
Vendored

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