blob: 2aaee91845b6a9bed478aa5b313bc2e13f37046d [file] [log] [blame]
class IntCat {
static def call(Integer i) {print i}
static def call(Integer i, String s) {print s}
}
use(IntCat) {
2.call()
2.call("a")
2()
2("2")
}