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