Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[S12-methods/what.t] Test for RT 112364 -- Parse Foo:: correctly
  • Loading branch information
kyleha committed May 14, 2012
1 parent 1641f44 commit 4e65cd6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion S12-methods/what.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 32;
plan 33;

=begin pod
Expand Down Expand Up @@ -105,6 +105,14 @@ ok 1.1 == 11/10, 'decimal == the equivalent rational';

}

# RT 112364
{
class RT112364 {
our sub xyz() { 'xyz' }
};
ok RT112364::.WHAT ~~ Stash, 'RT 112364';
}

done;

# vim: ft=perl6

0 comments on commit 4e65cd6

Please sign in to comment.