1--TEST-- 2Bug #41401 (wrong precedence for unary minus) 3--FILE-- 4<?php 5echo 1/-2*5; 6echo "\n"; 7echo 6/+2*-3; 8--EXPECT-- 9-2.5 10-9 11