root/t/junction/junction_pick.t

Revision 20490, 147 bytes (checked in by Auzon, 8 months ago)

s/use v6-alpha;$/use v6;/;
Also catching a few other mentions of v6-alpha.

  • Property svn:mime-type set to text/plain; charset=UTF-8
  • Property svn:eol-style set to native
Line 
1use v6;
2
3use Test;
4
5plan 1;
6
7my $junc = 1|2|3;
8ok $junc.pick == 1|2|3;
9
10# Note:
11#   ok 1|2|3 == $junc.pick;
12# works fine, for some strange reason.
Note: See TracBrowser for help on using the browser.