Skip to content

Instantly share code, notes, and snippets.

@lunelson
Created April 27, 2016 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lunelson/c155dc27cbc21dd9d22d302f11406337 to your computer and use it in GitHub Desktop.
Save lunelson/c155dc27cbc21dd9d22d302f11406337 to your computer and use it in GitHub Desktop.
true failing on use of calll()
@function foo($a,$b,$c) {
@return $a $b $c;
}
.test {
$list: 1 2 3;
out: foo(1,2,3);
out: foo($list...);
out: call(foo, $list...);
out: call(join(foo, $list)...);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment