namespacing-3.less 111 B

12345678
  1. .theme() {
  2. foo: bar;
  3. }
  4. .val {
  5. @alias: .theme; // aliasing not allowed without ()
  6. foo: @alias[foo];
  7. }