We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrated from rt.perl.org#128476 (status was 'new')
Searchable as RT128476$
The text was updated successfully, but these errors were encountered:
zoffix@leliana:/tmp/tmp.tEaH2sjXYg$ tree . ├── A.pm6 └── B.pm6
0 directories, 2 files zoffix@leliana:/tmp/tmp.tEaH2sjXYg$ cat B.pm6 unit module B; use soft; &put.wrap(sub (| is raw) {say "We're here!"; callsame}); zoffix@leliana:/tmp/tmp.tEaH2sjXYg$ cat A.pm6 unit module A; use B; zoffix@leliana:/tmp/tmp.tEaH2sjXYg$ perl6 -I. -MA -e 'put "foo"' Segmentation fault zoffix@leliana:/tmp/tmp.tEaH2sjXYg$
Sorry, something went wrong.
Worth noting: if you add `no precompilation;` at the top of module B.pm6, the bug disappears.
No branches or pull requests
Migrated from rt.perl.org#128476 (status was 'new')
Searchable as RT128476$
The text was updated successfully, but these errors were encountered: