Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test for RT #77436
  • Loading branch information
FROGGS committed Nov 7, 2013
1 parent 2f98819 commit ff66768
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion S12-methods/parallel-dispatch.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 35;
plan 37;

# L<S12/"Parallel dispatch"/"Any of the method call forms may be turned into a hyperoperator">
# syn r14547
Expand Down Expand Up @@ -130,4 +130,11 @@ class Bar is Foo {

}

# RT #77436
#?pugs 2 skip
{
is (1,2,3.$( * + 42 ), [43, 44, 45], '$( ) after dotty parallel dispatch';
is (1,2,3.&( * + 42 ), [43, 44, 45], '&( ) after dotty parallel dispatch';
}

# vim: ft=perl6

0 comments on commit ff66768

Please sign in to comment.