summaryrefslogtreecommitdiff
path: root/scss/tests/files/bugs/argspec-named-arguments.scss
blob: 1afc11dd7d4db9698bc8cb5fa5f25399f38d27b2 (plain)
1
2
3
4
5
6
7
8
9
@option style:legacy;

@function calculate($foo: 1, $bar: 2) {
    @return $foo * $bar;
}

p {
    line-height: calculate($foo: 3);
}