Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/importJavaSamInterface.fir.kt
T

14 lines
144 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.J