Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/importJavaSamInterface.kt
T
Alexander Udalov 1e51ba7d00 Run classifier usage checkers for ambiguous references when possible
See comment in getReferencedClassifier and importJavaSamInterface.kt for
explanation
2016-10-06 14:40:21 +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 test.<!DEPRECATION!>J<!>