[fixes #3373] Find references for extension methods

This commit is contained in:
Rawi01
2023-03-22 22:57:52 +01:00
committed by Roel Spilker
parent d56b576c26
commit afceb138e6
13 changed files with 184 additions and 2 deletions
@@ -0,0 +1,15 @@
package pkg;
public static class Extension {
public static String test(String s) {
return s;
}
public static String test(String s, int i) {
return s;
}
public static String test(String s, String... s2) {
return s;
}
}