Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt16086_2.fir.kt
T

13 lines
190 B
Kotlin
Vendored

// FILE: 1.kt
package a
import b.ObserverSupport
interface IEntity
fun IEntity(f: ObserverSupport<IEntity>) {}
// FILE: 2.kt
package b
import a.IEntity
class ObserverSupport<T : IEntity>