1<===> input.scss 2@mixin main() { 3 bar { 4 baz: 1; 5 } 6} 7 8foo { 9 @at-root { 10 @include main(); 11 } 12} 13 14<===> output.css 15bar { 16 baz: 1; 17} 18