summaryrefslogtreecommitdiff
path: root/scss/tests/files/from-sassc/spec-basic-23_basic_value_interpolation.scss
blob: 836341e395392d23ad75229049608578a4cfc9b2 (plain)
1
2
3
4
5
6
7
8
div {
  a: hello#{world};
  a: hello #{world};
  b: 12#{3};
  b: type-of(12#{3});
  b: #{12 + 111};
  b: type-of(#{12 + 111});
}