tolerant-php-parser icon indicating copy to clipboard operation
tolerant-php-parser copied to clipboard

RHS of byref assignment must be a variable

Open mattacosta opened this issue 8 years ago • 0 comments
trafficstars

While looking at an example related to #19, I also came across this new bug:

Sample code: $c =& $a + $b

Expected: ($c =& $a) + $b Actual: $c =& ($a + $b)

mattacosta avatar Feb 28 '17 00:02 mattacosta