Skip to content

Commit f4533cd

Browse files
committed
Allow clippy::incompatible_msrv
(cherry picked from commit 1900fae)
1 parent abd7a95 commit f4533cd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

rayon-core/tests/stack_overflow_crash.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use std::os::unix::process::ExitStatusExt;
88

99
fn force_stack_overflow(depth: u32) {
1010
let mut buffer = [0u8; 1024 * 1024];
11+
#[allow(clippy::incompatible_msrv)]
1112
std::hint::black_box(&mut buffer);
1213
if depth > 0 {
1314
force_stack_overflow(depth - 1);

0 commit comments

Comments
 (0)