From 46ff167e45d82b586e76a6bdd91c6cd5e01fc773 Mon Sep 17 00:00:00 2001 From: Coke Date: Sat, 9 Jul 2011 19:05:17 -0400 Subject: [PATCH] track rakudo/nom --- S13-overloading/operators.t | 2 ++ S14-roles/namespaced.t | 1 + 2 files changed, 3 insertions(+) diff --git a/S13-overloading/operators.t b/S13-overloading/operators.t index 285e70b74a..8e0dddf4c6 100644 --- a/S13-overloading/operators.t +++ b/S13-overloading/operators.t @@ -5,6 +5,7 @@ plan 3; #L +#?rakudo todo 'nom regression' { ok eval(q[ sub postfix:<ยง> ($x) { @@ -14,6 +15,7 @@ plan 3; ]) == 6, 'Can define postfix operator'; } +#?rakudo todo 'nom regression' { ok eval(q[ sub postfix:($arg) { diff --git a/S14-roles/namespaced.t b/S14-roles/namespaced.t index eb06aa6f6e..730d0df313 100644 --- a/S14-roles/namespaced.t +++ b/S14-roles/namespaced.t @@ -14,6 +14,7 @@ role A::B { method foo { "Foo" } }; +#?rakudo todo 'nom regression' is(A::B.WHAT, 'B()', 'A::B.WHAT stringifies to short name B'); class X does A::B {