We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1641f44 commit 4e65cd6Copy full SHA for 4e65cd6
S12-methods/what.t
@@ -1,6 +1,6 @@
1
use v6;
2
use Test;
3
-plan 32;
+plan 33;
4
5
=begin pod
6
@@ -105,6 +105,14 @@ ok 1.1 == 11/10, 'decimal == the equivalent rational';
105
106
}
107
108
+# RT 112364
109
+{
110
+ class RT112364 {
111
+ our sub xyz() { 'xyz' }
112
+ };
113
+ ok RT112364::.WHAT ~~ Stash, 'RT 112364';
114
+}
115
+
116
done;
117
118
# vim: ft=perl6
0 commit comments