blob: 4b58362cba74e003f5b8abc5f78d6b51290653d1 [file] [log] [blame]
class Util {
static doSomething(){}
static doSomething(def a){}
static doSomethingElse(def a){}
}
def doSomethingElse(){}
Ut<caret>il.doSomething()
Util.doSomething(2)
Util.doSomethingElse(2)