[perl #73760] Rakudo can't load classes from inside a module

2010-03-24 Thread jn...@jnthn.net via RT
On Tue Mar 23 00:09:02 2010, moritz wrote: > Consider these files: > > # JSON/Tiny.pm > module JSON::Tiny; > use JSON::Tiny::Grammar; > > # JSON/Tiny/Grammar.pm > class JSON::Tiny::Grammar { }; > > > $ perl6 JSON/Tiny.pm > Can't handle scope declarator on modules yet > current instr.: 'perl6;P

[perl #73760] Rakudo can't load classes from inside a module

2010-03-23 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #73760] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=73760 > Consider these files: # JSON/Tiny.pm module JSON::Tiny; use JSON::Tiny::Grammar; # JSON