Skip to content

Commit

Permalink
the private method doesn't need to have ! in its name.
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Feb 20, 2014
1 parent 0905696 commit 8f634c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S32-exceptions/misc.t
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ throws_like '1.foo', X::Method::NotFound, method => 'foo', typename => 'Int';
throws_like '1.+foo', X::Method::NotFound, method => 'foo', typename => 'Int';
throws_like 'my class Priv { method x { self!foo } }; Priv.x',
X::Method::NotFound,
method => '!foo',
method => 'foo',
typename => 'Priv',
private => { $_ === True };
# RT #77582
Expand Down

0 comments on commit 8f634c4

Please sign in to comment.