Skip to content

Commit ff382f2

Browse files
committed
niecza fudge
1 parent be01201 commit ff382f2

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

S02-types/lists.t

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ plan 29;
5656
"using lists as lvalues works";
5757
}
5858

59+
#?niecza skip 'TODO'
5960
{
6061
my $foo = 42;
6162

@@ -100,6 +101,7 @@ plan 29;
100101

101102
# Lists as lvalues to swap, this time we use binding instead of assignment
102103
#?rakudo skip 'list binding'
104+
#?niecza skip 'Cannot use bind operator with this LHS'
103105
{
104106
my $foo = 42;
105107
my $bar = 23;
@@ -114,6 +116,7 @@ plan 29;
114116
}
115117

116118
#?rakudo skip 'list binding'
119+
#?niecza skip 'Cannot use bind operator with this LHS'
117120
{
118121
my $foo = 1;
119122
my $bar = 2;
@@ -125,6 +128,7 @@ plan 29;
125128
}
126129

127130
#?rakudo skip 'auto-dereferencing of captures (?)'
131+
#?niecza skip 'Cannot use value like Capture as a number'
128132
{
129133
my @array = (1,2,3);
130134
my $arrayref = \@array;
@@ -133,6 +137,7 @@ plan 29;
133137
is +$arrayref[1], 2, '\@array creates an arrayref (2)';
134138
}
135139

140+
#?niecza skip 'Unable to resolve method rt62836 in class Parcel'
136141
{
137142
sub List::rt62836 { 62836 }
138143

@@ -150,6 +155,7 @@ plan 29;
150155
}
151156

152157
# RT #66304
158+
#?niecza skip 'Undeclared name: "Seq"'
153159
{
154160
my $rt66304 = (1, 2, 4);
155161
#?rakudo todo 'nom regression'
@@ -166,6 +172,7 @@ plan 29;
166172
}
167173

168174
# nom regression bug
175+
#?niecza skip 'Excess arguments to CORE List.new'
169176
{
170177
my $x = List.new('bacon');
171178
my $y = $x.Str;

0 commit comments

Comments
 (0)