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