summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources/sasslang/scss/178-update_stylesheet.scss
blob: e43d50813ba56adf456f90d1cc34d8f2eab15e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@import "filename_fn_import";

@mixin local-mixin {
  local-mixin: filename();
}

@function local-function() {
  @return filename();
}

filename {
  local: filename();
  @include local-mixin;
  local-function: local-function();

  @include imported-mixin;
  imported-function: imported-function();
}