root/t/junction/array_deref.t

Revision 20490, 148 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 = 0|1|2;
8my @a = (0,1,2);
9my $bool = Bool::False;
10try { $bool = (@a[$junc] == $junc) };
11ok $bool, :todo<bug>;
Note: See TracBrowser for help on using the browser.