tobyink / p5-type-tiny

Perl 5 distribution Type-Tiny; see homepage for downloads and documentation.
https://typetiny.toby.ink/
54 stars 48 forks source link

"Use of uninitialized value $_" message from Union #123

Closed djerius closed 2 years ago

djerius commented 2 years ago

Perl 5.36:

Old: $ perl -MTypes::Standard=-all -E 'say Type::Tiny->VERSION; Enum( ["internal"] ) | Undef' 1.016010

New: $ perl -MTypes::Standard=-all -E 'say Type::Tiny->VERSION; Enum( ["internal"] ) | Undef' 2.000000 Use of uninitialized value $_ in string ne at /home/dj/tmp/5.36/lib/perl5/Type/Tiny/Union.pm line 33.

tobyink commented 2 years ago

Fixed in 2.000001

djerius commented 2 years ago

Thanks!