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