Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
UnresolvedMethodCallWithTwoDeclarations.groovy
blob: 8771fa183c6feea4954d8d80fe09cd4cab37bf4a [
file
] [
log
] [
blame
]
class
X
{
def
foo
(
int
x
){}
def
foo
(
int
x
,
int
y
){}
def
abc
()
{
foo
<
warning descr
=
"'foo' in 'X' cannot be applied to '(java.lang.String)'"
>(
"s"
)</
warning
>
}
}