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


mulan...@bunkier_mysli:~/rakudo/rakudo-star-2010.07$ ./perl6 --version

This is Rakudo Perl 6, version 2010.07-47-g9fd5eaa built on parrot 2.6.0

Copyright 2008-2010, The Perl Foundation

Tests run from pwd: /home/full/mulander/rakudo/rakudo-star-2010.07

In the provided rakudo interactive session I tried to use the Test module.
I succeeded running a simple test on line  8 (count including the prompt
./perl6).
Further tests I tried failed with the message:
  get_attr_str() not implemented in class 'Sub'

I consulted this issue on the IRC #perl6 channel - providing the saved log:
13:52 < mulander> can someone explain this to me:
http://pastebin.com/d6eyqg2v
13:52 < mulander> why did it work on line 8 and crashed later on?
13:53 < moritz_> mulander: it seems that loading the same module multiple
times is broken
13:53 < moritz_> mulander: please send a bug report to rakudo...@perl.org

The following snippet is also available online: http://pastebin.com/d6eyqg2v

mulan...@bunkier_mysli:~/rakudo/rakudo-star-2010.07$ ./perl6
> use Test;
_block64
> is 1,1, 'Is one eual one?';
Could not find sub &is
> Test.is 1,1, 'Is one eual one?';
Confused at line 1, near "Test.is 1,"
> use Test; is 1,1,'Is one equal one?';
ok 1 - Is one equal one?
> use Test; is 1,1,'Is one equal one?'; is 2,2, 'Is two equal two'; is 2,3,
'Is two equal three?';
get_attr_str() not implemented in class 'Sub'
> use Test; is 1,1,'Is one equal one?'; is 2,2,'Is two equal two'; is 2,3,
'Is two equal three?';
get_attr_str() not implemented in class 'Sub'
> use Test; is 1,1,'Is one equal one?'; is 2,2,'Is two equal two';
get_attr_str() not implemented in class 'Sub'
> use Test; is 1,1,'Is one equal one?'; is 2,2,'Is two equal two';
get_attr_str() not implemented in class 'Sub'
> use Test; is 1,1,'Is one equal one?';
get_attr_str() not implemented in class 'Sub'
> use Test; is 1,1,'Is one equal one?';
get_attr_str() not implemented in class 'Sub'
>

Reply via email to