We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
To reproduce:
use std::future::Future; #[inline(never)] async fn recurse(n: usize) { let x = [77u8; 70000]; if n != 0 { std::future::poll_fn(move |cx| { stacker::maybe_grow(140 * 1024, 8 * 1024, move || { Box::pin(recurse(n - 1)).as_mut().poll(cx) }) }) .await; } #[allow(dropping_copy_types)] drop(x); } #[test] fn foof() { futures_lite::future::block_on(recurse(10000)) }
Error message:
process didn't exit successfully: `/home/dullbananas/Dropbox/stacker/target/debug/deps/segfault-6753b3a3d075b2b5 foof --exact --show-output` (signal: 11, SIGSEGV: invalid memory reference)
cargo 1.86.0 (adf9b6ad1 2025-02-28)
Linux 6.14.5-300.t2.fc42.x86_64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce:
Error message:
cargo 1.86.0 (adf9b6ad1 2025-02-28)
Linux 6.14.5-300.t2.fc42.x86_64
The text was updated successfully, but these errors were encountered: