Consider the following: ```groovy trait T { def m() { staticMethod() } static void staticMethod() { } } ``` Open tooltip (F2 or hover) and Open Declaration (F3 or Ctrl+click) fail to identify the static trait method for the call expression `staticMethod()`.
Consider the following:
trait T { def m() { staticMethod() } static void staticMethod() { } }Open tooltip (F2 or hover) and Open Declaration (F3 or Ctrl+click) fail to identify the static trait method for the call expression
staticMethod().