Skip to content

Commit

Permalink
fix(test_runner): add #![feature(must_not_suspend)]
Browse files Browse the repository at this point in the history
The `must_not_suspend` lint is now feature-gated by
<rust-lang/rust#89826>.
  • Loading branch information
yvt committed Dec 3, 2021
1 parent 43883fd commit 577db5e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/r3_test_runner/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#![feature(decl_macro)] // `macro`
#![feature(must_not_suspend)] // `must_not_suspend` lint
#![warn(must_not_suspend)]
use std::{env, path::Path};
use structopt::StructOpt;
use thiserror::Error;
Expand Down

0 comments on commit 577db5e

Please sign in to comment.