Find Usages checks that the signature of the method a property usage resolves to matches the signature of the method being searched

#KT-15291 Fixed
This commit is contained in:
Dmitry Jemerov
2017-01-31 19:33:58 +01:00
parent dbfe3370aa
commit 9594147c55
5 changed files with 36 additions and 1 deletions
@@ -0,0 +1,11 @@
// PSI_ELEMENT: com.intellij.psi.PsiMethod
// OPTIONS: usages
public class Bar {
public String getValue() {
return "value";
}
public String <caret>getValue(String param) {
return "value " + param;
}
}