Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unrequired default decls.
We ignored these before; now we pay attention to them, and hit a
bootstrap issue.
  • Loading branch information
jnthn committed Jul 25, 2013
1 parent 787295d commit b54c12b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/traits.pm
Expand Up @@ -153,9 +153,9 @@ multi trait_mod:<is>(Parameter:D $param, :$parcel!) {

# Declare these, as setting mainline doesn't get them automatically (as the
# Mu/Any/Scalar are not loaded).
my $! is default(Nil);
my $/ is default(Nil);
my $_ is default(Nil);
my $!;
my $/;
my $_;

sub EXPORT_SYMBOL(\exp_name, @tags, Mu \sym) {
my @export_packages = $*EXPORT;
Expand Down

0 comments on commit b54c12b

Please sign in to comment.