Can't navigate to SAM adapter function declaration (KT-8918)

#KT-8918 Fixed
This commit is contained in:
Nikolay Krasko
2015-08-27 18:47:25 +03:00
parent ab783e052f
commit 4c9af37526
4 changed files with 24 additions and 1 deletions
@@ -0,0 +1,11 @@
public class JavaTest {
public interface SAMInterface {
void onEvent(int event);
}
public static class SomeJavaClass {
public void setListener(SAMInterface listener) {}
}
}