summaryrefslogtreecommitdiff
path: root/scss/tests/files/from-sassc/tests-for.scss
blob: cf1f181875046009006da6ab4b46e089aeeb37be (plain)
1
2
3
4
5
6
7
8
9
$limit: 10;

@for $x from 1 through $limit {
  $limit: 4;
  div {
    $limit: 3;
    content: $limit thing $x;
  }
}