You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 3, 2021. It is now read-only.
class A {
has @!x;
method pushx($a) {
pir::push(@!x, $a);
say(pir::join('|', @!x));
}
}
A.new.pushx('42');
# output: an empty line. Should be 42\n, IMHO
That's the same both in master and nom branch. Needs fixing :-)