> On 22 Jun 2016, at 15:46, Sam S. (via RT) <perl6-bugs-follo...@perl.org> > wrote: > > # New Ticket Created by Sam S. > # Please include the string: [perl #128462] > # in the subject line of all future correspondence about this issue. > # <URL: https://rt.perl.org/Ticket/Display.html?id=128462 > > > > my \term = 42; > say term.Str; # Works fine > say term\ .Str; # Error: "Variable '&term' is not declared"
Thanks for the report. Please note that you don’t need to unspace anymore in the given case: say term .Str just works since just before Christmas :-) Liz