Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
Currying.groovy
blob: e09286ac7a2ff86679a32adaf92cdc4c60b8446d [
file
] [
log
] [
blame
]
def
cl
=
{
Map
m
,
String
s
,
int
x
,
def
y
->
print
"foo"
}
cl
=
cl
.
rcurry
(
2
,
4
)
cl
=
cl
.
ncurry
(
1
,
"a"
)
cl
(
a
:
2
)
cl
<
warning descr
=
"'cl' cannot be applied to '()'"
>()</
warning
>