Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
PathCallIsNotApplicable.groovy
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
>
}