We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This code should compile:
@function foo($args...) { @return bar($args...); } @function bar() { @return "hi"; } .foo { result: foo(); }
to:
.foo { result: "hi"; }
But instead I get the following error even in the latest libsass code:
function bar only takes 0 arguments; given 1 on line 2 at column 11
The text was updated successfully, but these errors were encountered:
Allow empty rest arguments in varargs
120d8eb
Fixes sass#1130
damn you're fast.
Sorry, something went wrong.
Specs added sass/sass-spec#343
mgreter
Successfully merging a pull request may close this issue.
This code should compile:
to:
But instead I get the following error even in the latest libsass code:
The text was updated successfully, but these errors were encountered: