Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add new test file for RT#112234
  • Loading branch information
coke committed Jan 14, 2014
1 parent b14d48b commit 5b745a5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions S03-operators/custom.t
@@ -0,0 +1,13 @@
use v6;
use Test;

plan 1;

#RT #112234
{
enum A <e1 e2>;
multi infix:<< - >>(e1, e2) { return "AWW" };
is e1 - e2, "AWW", "can use <<>> for infix defs";
}

# vim: ft=perl6

0 comments on commit 5b745a5

Please sign in to comment.