Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Follow semantic change of rakudo/rakudo@6cca27669f
Lists consisting of only value types, are now also a value type.
Please revert should 6cca276 get reverted.
  • Loading branch information
lizmat committed Dec 23, 2017
1 parent 61c882c commit 5670acf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion S02-types/list.t
Expand Up @@ -92,7 +92,7 @@ is $(;).elems, 0, '$(;) parses, and is empty';
} #2

{
ok <a b c> !=== <a b c>, 'a b c !=== a b c (List is not a value type)';
ok <a b c> === <a b c>, 'a b c === a b c (List is value type of value types)';
ok (my $x1=42,1) !=== (42,1), '$x1 = 42,1 !=== 42,1';
ok (my $x2=42,1) !=== (my $y=42,1), '$x2 = 42,1 !=== $y = 42,1';
ok (my $x3=42,1) !=== (my $y2:=$x3,1), '$x3=42,1 !=== $y2 := $x3,1 (List is not a value type)';
Expand Down
2 changes: 1 addition & 1 deletion integration/advent2013-day07.t
Expand Up @@ -10,6 +10,6 @@ only sub infix:<<"\x2286">>($a, $b --> Bool) {
is set( <a b c> ) set( <a b c d> ), True, 'a b c ⊆ a b c d';
is set( <a b c d> ) set( <a b c> ), False, 'a b c d ⊆ a b c';
is <a b c> <a b d>, False, 'a b c ⊆ a b d';
is <a b c> === <a b c>, False, 'a b c === a b c';
is <a b c> === <a b c>, True, 'a b c === a b c';
is <a b c> eqv <a b c>, True, 'a b c eqv a b c';
is set(<a b c>).WHICH, set(<c b a>).WHICH, 'make sure .WHICH is consistent';

0 comments on commit 5670acf

Please sign in to comment.