# New Ticket Created by Benjamin Goldberg
# Please include the string: [perl #130685]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=130685 >
When I type the following in the #perl6 irc channel:
m: use experimental :macros; macro infix:<plus>($a, $b) { return quasi {
{{{$a}}} + {{{$b}}} } }; say 2 plus 3;
camelia reponds:
rakudo-moar d69f37: OUTPUT«WARNINGS for <tmp>:Useless use of constant integer
2 in sink context (line 1)Useless use of constant integer 3 in sink context
(line 1)5»
The sum (5) does appear at the end there... but the “Useless use...” warnings
are obviously wrong.