[BUG] Eclipse doesn't find usages of extension-methods in "find references" nor rename-refactoring (original) (raw)

Describe the bug
When using methods made accessible via @ExtensionMethod these usages of the methods are neither found by "References in Workspace" (Ctrl-G), nor are they changed when refactoring such methods' names.

To Reproduce

@ExtensionMethod(MyExtensions.class) // containing a static method foo(Object o)  
class AnyClass {  
  void anyMethod() {  
    Object o = new Object();  
    o.foo();  
  }  
}  

Expected behavior

Version info (please complete the following information):