blob: 833068eb974b453a96979ba13f209cd58eb1976f [file] [log] [blame]
class IntCategory {
static def call(Integer i, int q) {
return {
String s -> s + q;
}
}
}
use(IntCategory) {
print 2(3)<warning descr="'2(3)' cannot be applied to '(java.lang.String, java.lang.String)'">("a", "b")</warning>
}