Show
Ignore:
Timestamp:
07/01/08 23:13:19 (5 months ago)
Author:
moritz
Message:

[spec] a bit more fudge fiddling

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-operators/short-circuit.t

    r21141 r21150  
    137137 
    138138# L<S03/Chained comparisons/Each argument chain will evaluate at most once> 
    139 #?rakudo todo 'chained comparison order of evaluations' 
    140139{ 
    141140    my $x = 0; 
    142141    my $y = 0; 
     142    #?rakudo todo 'chained comparison order of evaluations' 
    143143    ok(($x++ < ++$y < ++$y), "chained comparison (truth - 1)"); 
    144144    # expect x=1, y=2