Skip to content

Commit 86b9677

Browse files
committed
fix scoping bug in use-with-class.t, fudge for rakudo
1 parent 26046d4 commit 86b9677

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

S10-packages/use-with-class.t

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ plan 8;
1111

1212
use t::spec::packages::UseTest;
1313

14-
eval_lives_ok 'Stupid::Class.new()', 'can instantiate object of "imported" class';
14+
#?rakudo todo "Could not find symbol 'Stupid::&Class'"
15+
ok eval('Stupid::Class.new()'), 'can instantiate object of "imported" class';
16+
diag $! if $!;
1517

1618
{
1719
my $o = Stupid::Class.new(attrib => 'a');

0 commit comments

Comments
 (0)