blob: b9006ef9f69221edb0530e6f8d56714b5c29f145 [file] [log] [blame]
import static Util.doSomething
class Util {
static doSomething(){}
static doSomething(def a){}
static doSomethingElse(def a){}
}
doSomething()
doSomething(2)
Util.doSomethingElse(2)