summaryrefslogtreecommitdiff
path: root/scss/tests/files/regressions/015-function-no-arguments.scss
blob: 273b9a586498d14c5fddcde7fa01d078b0a4816b (plain)
1
2
3
4
5
6
7
@function get-a-number() {
    @return 5;
}

h1 {
    line-height: get-a-number();
}