mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-18 06:26:28 +00:00
[fixes #3373] Find references for extension methods
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user