aboutsummaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslangbroken/scss/376-test_nested_function_shadow.scss
blob: d69639668ec0ed56d3c9f69d342e53ec37d77a97 (plain)
1
2
3
4
5
6
7
8
@function foo() {@return 1}

foo {
  @function foo() {@return 2}
  a: foo();
}

baz {b: foo()}