FIR resolve: check number of parameters when handling Java accessors
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class JavaClass {
|
||||
public String getText() {
|
||||
return "Text";
|
||||
}
|
||||
|
||||
public String getText(String param) {
|
||||
return "Text with " + param;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user