``` --test1: (1 / 2); @value: (1 / 2); --test2: @value; ``` compiles to: ``` --test1: (1 / 2); --test2: 0.5; ``` I would expect both to compile to 0.5 I can't find any mention of this in documentation. EDIT: see https://github.com/less/less.js/issues/3800