Run classifier usage checkers for ambiguous references when possible

See comment in getReferencedClassifier and importJavaSamInterface.kt for
explanation
This commit is contained in:
Alexander Udalov
2016-09-24 16:54:55 +03:00
parent ec53efd869
commit 1e51ba7d00
3 changed files with 36 additions and 2 deletions
@@ -0,0 +1,13 @@
// SKIP_TXT
// FILE: test/J.java
package test;
@Deprecated
public interface J {
public String foo(int x);
}
// FILE: K.kt
import test.<!DEPRECATION!>J<!>