#!/usr/bin/env raku
use Inline::Perl5;
use Smart::Comments:from<Perl5>;
my $foo = 42;
### $foo
say "Done";
Expected output:
### $foo: 42
Done
Actual output:
Done
zsh: segmentation fault raku sc-test.raku
Is the problem that Smart::Comments
relies on Perl5 source filtering?