Skip to content

Commit 4e65cd6

Browse files
committed
[S12-methods/what.t] Test for RT 112364 -- Parse Foo:: correctly
1 parent 1641f44 commit 4e65cd6

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

S12-methods/what.t

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use v6;
22
use Test;
3-
plan 32;
3+
plan 33;
44

55
=begin pod
66
@@ -105,6 +105,14 @@ ok 1.1 == 11/10, 'decimal == the equivalent rational';
105105

106106
}
107107

108+
# RT 112364
109+
{
110+
class RT112364 {
111+
our sub xyz() { 'xyz' }
112+
};
113+
ok RT112364::.WHAT ~~ Stash, 'RT 112364';
114+
}
115+
108116
done;
109117

110118
# vim: ft=perl6

0 commit comments

Comments
 (0)