We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83aa430 commit ce4fdbfCopy full SHA for ce4fdbf
S02-types/whatever.t
@@ -1,7 +1,7 @@
1
use v6;
2
use Test;
3
4
-plan 80;
+plan 83;
5
6
# L<S02/The Whatever Object/"The * character as a standalone term captures the notion of">
7
# L<S02/Native types/"If any native type is explicitly initialized to">
@@ -262,4 +262,12 @@ eval_lives_ok '{*.{}}()', '{*.{}}() lives';
262
nok $chained(3), 'Chained comparison (3)';
263
}
264
265
+# RT #120385
266
+#?rakudo todo 'whatevercode with postcircumfix [] and {}'
267
+{
268
+ isa_ok (*.[1]), Code, '*.[1] is some kind of code';
269
+ isa_ok (*.<a>), Code, '*.<a> is some kind of code';
270
+ isa_ok (*.{1}), Code, '*.{1} is some kind of code';
271
+}
272
+
273
# vim: ft=perl6
0 commit comments