Skip to content

Commit 577db5e

Browse files
committed
fix(test_runner): add #![feature(must_not_suspend)]
The `must_not_suspend` lint is now feature-gated by <rust-lang/rust#89826>.
1 parent 43883fd commit 577db5e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/r3_test_runner/src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#![feature(decl_macro)] // `macro`
2+
#![feature(must_not_suspend)] // `must_not_suspend` lint
3+
#![warn(must_not_suspend)]
24
use std::{env, path::Path};
35
use structopt::StructOpt;
46
use thiserror::Error;

0 commit comments

Comments
 (0)