Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/importJavaSamInterface.fir.kt
T
2021-07-26 14:50:54 +03:00

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 <!DEPRECATION!>test.J<!>