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

4 lines
124 B
Kotlin
Vendored

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