@@ -56,6 +56,7 @@ plan 29;
56
56
" using lists as lvalues works" ;
57
57
}
58
58
59
+ # ?niecza skip 'TODO'
59
60
{
60
61
my $ foo = 42 ;
61
62
@@ -100,6 +101,7 @@ plan 29;
100
101
101
102
# Lists as lvalues to swap, this time we use binding instead of assignment
102
103
# ?rakudo skip 'list binding'
104
+ # ?niecza skip 'Cannot use bind operator with this LHS'
103
105
{
104
106
my $ foo = 42 ;
105
107
my $ bar = 23 ;
@@ -114,6 +116,7 @@ plan 29;
114
116
}
115
117
116
118
# ?rakudo skip 'list binding'
119
+ # ?niecza skip 'Cannot use bind operator with this LHS'
117
120
{
118
121
my $ foo = 1 ;
119
122
my $ bar = 2 ;
@@ -125,6 +128,7 @@ plan 29;
125
128
}
126
129
127
130
# ?rakudo skip 'auto-dereferencing of captures (?)'
131
+ # ?niecza skip 'Cannot use value like Capture as a number'
128
132
{
129
133
my @ array = (1 ,2 ,3 );
130
134
my $ arrayref = \@ array ;
@@ -133,6 +137,7 @@ plan 29;
133
137
is + $ arrayref [1 ], 2 , ' \@array creates an arrayref (2)' ;
134
138
}
135
139
140
+ # ?niecza skip 'Unable to resolve method rt62836 in class Parcel'
136
141
{
137
142
sub List ::rt62836 { 62836 }
138
143
@@ -150,6 +155,7 @@ plan 29;
150
155
}
151
156
152
157
# RT #66304
158
+ # ?niecza skip 'Undeclared name: "Seq"'
153
159
{
154
160
my $ rt66304 = (1 , 2 , 4 );
155
161
# ?rakudo todo 'nom regression'
@@ -166,6 +172,7 @@ plan 29;
166
172
}
167
173
168
174
# nom regression bug
175
+ # ?niecza skip 'Excess arguments to CORE List.new'
169
176
{
170
177
my $ x = List . new (' bacon' );
171
178
my $ y = $ x . Str ;
0 commit comments