add test for multiline comments between function name and args

This commit is contained in:
Connor Skees 2020-08-21 19:38:43 -04:00
parent c44f20d377
commit b03561bc37

View File

@ -328,3 +328,14 @@ test!(
}",
"a {\n color: nul;\n}\n"
);
test!(
allows_multiline_comment_between_args,
"@function foo /**/ () /**/ {
@return red;
}
a {
color: foo();
}",
"a {\n color: red;\n}\n"
);