11 lines
88 B
Kotlin
Vendored
11 lines
88 B
Kotlin
Vendored
// FILE: A.kt
|
|
|
|
package test
|
|
|
|
@Deprecated("A")
|
|
interface A
|
|
|
|
// FILE: B.kt
|
|
|
|
import test.A
|