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