Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
AnotherCurrying.groovy
blob: 9756d93395763b1c777869726f4e0bada147b047 [
file
] [
log
] [
blame
]
def
cl
=
{
String
s
,
int
x
->
print
"fp"
}
cl
=
cl
.
ncurry
(
0
,
"a"
)
cl
<
warning descr
=
"'cl' cannot be applied to '(java.lang.String)'"
>(
"a"
)</
warning
>
cl
(
2
)