[perl #65700] Subtyped attributes can be instantiated with impossible values in Rakudo

2011-09-19 Thread Will Coleda via RT
On Mon Oct 26 14:50:37 2009, KyleHa wrote: > This is an automatically generated mail to inform you that tests are > now available in t/spec/S12-subset/subtypes.t And we now run this test, with no skips or todos. \o/ -- Will "Coke" Coleda

[perl #65700] Subtyped attributes can be instantiated with impossible values in Rakudo

2009-05-17 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #65700] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=65700 > perl6: class A { my subset B of Int where { $^n < 10 }; has B $.c }; A.new( c => 20 );