Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
goto
/
NewExpressionWithMapParameter.groovy
blob: 748de04603444481b4d76dc464706469d60e4981 [
file
] [
log
] [
blame
]
class
X
{
public
X
()
{}
public
X
(
int
i
,
int
j
){}
public
X
(
Map
map
){}
int
i
;
int
j
;
}
new
X
<caret>
(
i
:
1
,
j
:
2
);