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.
1 parent abd7a95 commit f4533cdCopy full SHA for f4533cd
rayon-core/tests/stack_overflow_crash.rs
@@ -8,6 +8,7 @@ use std::os::unix::process::ExitStatusExt;
8
9
fn force_stack_overflow(depth: u32) {
10
let mut buffer = [0u8; 1024 * 1024];
11
+ #[allow(clippy::incompatible_msrv)]
12
std::hint::black_box(&mut buffer);
13
if depth > 0 {
14
force_stack_overflow(depth - 1);
0 commit comments