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