Skip to content

Commit

Permalink
oops, meant to test something else
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed May 29, 2012
1 parent dddf111 commit cf0e342
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion S32-exceptions/misc.t
Expand Up @@ -79,7 +79,8 @@ throws_like 'sub (Int Str $x) { }', X::Parameter::MultipleTypeConstraints;
throws_like 'my @a; my @a', X::Redeclaration, symbol => '@a';
throws_like 'sub a { }; sub a { }',X::Redeclaration, symbol => 'a', what => 'routine';
# RT #78370
throws_like 'my &a; sub a { }', X::Redeclaration, symbol => 'a', what => 'routine';
#?rakudo skip 'RT 78370'
throws_like 'my &a; multi a { }', X::Redeclaration, symbol => 'a', what => 'routine';
throws_like 'sub a { }; multi sub a { }',X::Redeclaration, symbol => 'a', what => 'routine';
throws_like 'my class A { }; my class A { }', X::Redeclaration, symbol => 'A';
throws_like 'my class B { }; my subset B of Any;', X::Redeclaration, symbol => 'B';
Expand Down

0 comments on commit cf0e342

Please sign in to comment.