Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add test for RT #127504
  • Loading branch information
lizmat committed Feb 10, 2016
1 parent 5dcda3c commit 5a079b2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion integration/weird-errors.t
Expand Up @@ -3,7 +3,7 @@ use Test;
use lib 't/spec/packages';
use Test::Util;

plan 20;
plan 21;

# this used to segfault in rakudo
#?niecza skip 'todo'
Expand Down Expand Up @@ -169,3 +169,9 @@ throws-like { EVAL '&&::{}[];;' },
},
'appropriate error message instead of internal compiler error' );
}

#RT #127504
{
throws-like { "::a".EVAL }, X::NoSuchSymbol, symbol => "a",
"test throwing for ::a";
}

0 comments on commit 5a079b2

Please sign in to comment.