1 2 3 4 5 6 7 8 9
@function fail-deep() { @error "function chain failure"; } @function wrapper() { @return fail-deep(); } .foo { x: wrapper(); }