blob: 915316db3d7ff65c4bbca313d8414007021463fb [file] [log] [blame]
class IntCategory {
static def call(Integer i, int q) {
return "$q"
}
}
use(IntCategory) {
print 2<warning descr="'call' in 'IntCategory' cannot be applied to '(java.lang.Integer, java.lang.Integer)'">(3, 4)</warning>
}