Files
kotlin-fork/compiler/testData/diagnostics/tests/override/derivedClasses/DelegatedConstructor.kt
T

4 lines
127 B
Kotlin
Vendored

open class Foo<T>(val item: T)
class Bar(str: String) : <!DEBUG_INFO_CALLABLE_OWNER("Foo.<init> in Foo")!>Foo<String>(str)<!>