# New Ticket Created by Lloyd Fournier # Please include the string: [perl #128866] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=128866 >
say Array[Int] ~~ Array[Int]; # True say Array[Int] ~~ Positional[Numeric]; # True say Positional[Int] ~~ Positional[Numeric]; # True say Array[Int] ~~ Array[Numeric]; # False The last one should be true as well.