summaryrefslogtreecommitdiff
path: root/scss/tests/files/bugs/interpolation-timing.scss
blob: a58f5f1ff64669f522fc33c8fac94ed915bb27fb (plain)
1
2
3
4
5
6
7
8
9
10
@mixin content_value($value) {
    content: $value;
}

div {
    // only exists in this block, so if the interpolation is evaluated /later/,
    // $local won't exist
    $local: value;
    @include content_value("#{$local}");
}