mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
14 lines
162 B
Kotlin
Vendored
14 lines
162 B
Kotlin
Vendored
// SKIP_TXT
|
|
// FILE: test/J.java
|
|
|
|
package test;
|
|
|
|
@Deprecated
|
|
public interface J {
|
|
public String foo(int x);
|
|
}
|
|
|
|
// FILE: K.kt
|
|
|
|
import test.<!DEPRECATION!>J<!>
|