# New Ticket Created by  "Carl Mäsak" 
# Please include the string:  [perl #62004]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=62004 >


Rakudo r34997 doesn't allow enum values to be written without their namespace:

$ perl6 -e 'enum Color <white gray black>; my Color $c = Color::white; say $c'
0
$ perl6 -e 'enum Color <white gray black>; my Color $c = white'too few
arguments passed (0) - 1 params expected
[...]

The hard-coded exception right now is C<True> and C<False>.

Reply via email to