mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-22 10:25:48 +00:00
[fixes #3373] Find references for extension methods
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package pkg;
|
||||
|
||||
import lombok.experimental.ExtensionMethod;
|
||||
|
||||
@ExtensionMethod(Extension.class)
|
||||
public class Usage {
|
||||
public void test() {
|
||||
private String string;
|
||||
string.test();
|
||||
string.test("a");
|
||||
string.test(1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user