search for Kotlin convention usages of Java methods

#KT-5960 Fixed
This commit is contained in:
Dmitry Jemerov
2016-06-03 21:22:25 +02:00
parent 7e2ce2d4e0
commit 060c285715
8 changed files with 142 additions and 47 deletions
@@ -0,0 +1,7 @@
// PSI_ELEMENT: com.intellij.psi.PsiMethod
// OPTIONS: usages
public class Small {
public boolean c<caret>ontains(String str) { // Call "Find usages" for this method
return true;
}
}