Skip Menu |

This queue is for tickets about the Language-Farnsworth CPAN distribution.

Report information
The Basics
Id: 57103
Status: new
Priority: 0/
Queue: Language-Farnsworth

People
Owner: simcop [...] cpan.org
Requestors: simcop2387 [...] simcop2387.info
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in:
  • 0.7.0
  • 0.7.2
Fixed in: (no value)



Subject: Nested byref is broken.
var a=42; foo{x byref} := {x = 46; bar[x]}; bar{y byref} := {y = 12}; [a, foo[a], a]; SHOULD GIVE BACK [42 , 12 , 12 ] INSTEAD IT GIVES [42 , 12 , 46 ]