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


$ perl6 -v
This is Rakudo Perl 6, version Kiev-235-g6ab7415

$ cat testa.p6
use Tufte::Renderer::Standard;
$ cat Tufte/Renderer/Standard.pm
class Tufte::Renderer::Standard;
$ perl6 testa.p6
===SORRY!===
Confused at line 1, near "\nuse Tufte"

$ cat testb.p6
use Tufte::Renderer::New;
$ cat Tufte/Renderer/New.pm
class Tufte::Renderer::New;
$ perl6 testb.p6
# Nothing output.

$ cat testc.p6
use Tufte::Standard;
$ cat Tufte/Standard.pm
class Tufte::Standard;
$ perl6 testc.p6
# Nothing output.

And I have tried to place the whole Tufte directory to other places, but
just get the same results.
So, maybe the "use" statement will fail on some uncertain conditions.

Reply via email to