Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[S03-operators/inplace] Clarify niecza fudge so nobody undoes it by m…
…istake
  • Loading branch information
sorear committed Dec 21, 2011
1 parent 957b9f9 commit 3341d5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S03-operators/inplace.t
Expand Up @@ -65,11 +65,11 @@ is ~@b, "a b d e z", "inplace sort";
my @a_orig = @a;

my @b = @a.sort: {1};
#?niecza todo
#?niecza todo "sort is not a stable sort on all platforms"
is @b, @a_orig, 'worked: @a.sort: {1}';

@a.=sort: {1};
#?niecza todo
#?niecza todo "sort is not a stable sort on all platforms"
is @a, @a_orig, 'worked: @a.=sort: {1}';

@a.=sort;
Expand Down

0 comments on commit 3341d5b

Please sign in to comment.