That's a nice one. Still reproducible (2017.11, HEAD(5929887))
On 2015-09-20 09:29:41, zef...@fysh.org wrote:
> $ ./perl6 -e 'sub aa (Mu:U ::T) { say T; my T $a = T; say $a.WHAT; };
> aa(Int); aa(Nil)'
> (Int)
> (Int)
> Nil
> Method 'gist' not found for invocant of class 'T'
> in sub aa at -e:1
>
# New Ticket Created by Zefram
# Please include the string: [perl #126118]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=126118 >
$ ./perl6 -e 'sub aa (Mu:U ::T) { say T; my T $a = T; say $a.WHAT; }; aa(Int);
aa(Nil)'
(Int)