Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Start to de-bitrot traits tests.
  • Loading branch information
jnthn committed Sep 21, 2011
1 parent cdb3f48 commit ebdee8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S14-traits/attributes.t
Expand Up @@ -6,12 +6,12 @@ plan 8;
# L<S14/Traits/>

my @attr_names;
multi trait_mod:<is>(AttributeDeclarand $a, :$noted!) {
multi trait_mod:<is>(Attribute $a, :$noted!) {
push @attr_names, $a.name;
}

role doc { has $.doc is rw }
multi trait_mod:<is>(AttributeDeclarand $a, doc, $arg) {
multi trait_mod:<is>(Attribute $a, doc, $arg) {
$a.container.VAR does doc($arg);
}

Expand Down

0 comments on commit ebdee8d

Please sign in to comment.