Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regression with call() #2057

Closed
lunelson opened this issue Apr 29, 2016 · 1 comment
Closed

Regression with call() #2057

lunelson opened this issue Apr 29, 2016 · 1 comment

Comments

@lunelson
Copy link

lunelson commented Apr 29, 2016

The following code was working correctly up until one of the last minor bumps.

@function apply($args) { @return call($args...); }
@function foo($a, $b, $c){ @return $a $b $c; }

.fntest {
  output: call(foo,1,2,3);
  output: apply(foo 1 2 3);
}

Returned correctly, as late as v3.3.4:

.fntest {
  output: 1 2 3;
  output: 1 2 3; }

now with v3.3.6 returns:

.fntest {
  output: 1 2 3;
  output: foo 1 2 3...(); }
@mgreter
Copy link
Contributor

mgreter commented Apr 30, 2016

Probably a duplicate of #2034

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants