13 lines
190 B
Kotlin
Vendored
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> |