Skip to content

Commit

Permalink
add test for RT #83454
Browse files Browse the repository at this point in the history
  • Loading branch information
coke committed Mar 29, 2013
1 parent 92f5587 commit 2dd229c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion S32-list/uniq.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 13;
plan 14;

=begin description
Expand Down Expand Up @@ -67,4 +67,12 @@ is uniq('a', 'b', 'b', 'c', 'd', 'e', 'b', 'b', 'b', 'b', 'f', 'b'),

}

# RT #83454
{
my @list = 1, "1";
my @uniq = uniq(@list);
is @uniq, @list, "uniq has === semantics";
}


# vim: ft=perl6

0 comments on commit 2dd229c

Please sign in to comment.