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