Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fudge for Niecza.
  • Loading branch information
colomon committed Mar 7, 2013
1 parent 64b9d5f commit 5a0824c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions S02-literals/quoting.t
Expand Up @@ -602,6 +602,7 @@ is "foo $( my $x = 3 + 4; "bar" ) baz", 'foo bar baz', 'declaration in interpola
is <<<\>'n'>>.join('|'), '<>|n', 'texas quotes edge case';
#?pugs todo
#?niecza todo
{
$_ = 'abc';
/a./;
Expand Down
1 change: 1 addition & 0 deletions S02-types/subset.t
Expand Up @@ -152,6 +152,7 @@ dies_ok { my Digit $x = 3.1 },
}

# RT #74234
#?niecza todo
{
eval_lives_ok 'subset A of Mu; my A $x = 23;',
'subset A of Mu + type check and assignment works';
Expand Down
1 change: 1 addition & 0 deletions S03-junctions/boolean-context.t
Expand Up @@ -72,6 +72,7 @@ ok do if 1 | 2 | 3 == 2 { 1 } else { 0 }, "3x very simple invocation of | and &
ok do if 2 & 2 & 2 == 2 { 1 } else { 0 };
ok do if 2 & 2 & 2 == 3 { 0 } else { 1 };

#?niecza todo "Difficulties overloading | and &"
{
my $foo = 0;
sub infix:<|>(*@a) { $foo++; any(|@a) };
Expand Down

0 comments on commit 5a0824c

Please sign in to comment.