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