RT for rt.cpan.org
Skip Menu
|
Bug #57103 for Language-Farnsworth: Nested byref is broken.
Active bugs
Resolved bugs
Rejected bugs
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)
History
Show all quoted text
Fri Apr 30 22:40:18 2010
simcop [...] cpan.org - Ticket created
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 ]