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:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user