Skip to content

Commit 42ac702

Browse files
committed
Fix lints on nightly
1 parent d87637c commit 42ac702

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

bon/tests/integration/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@
1212
)]
1313
// This catches the problem of `clippy::empty_enum` lint triggering.
1414
// This lint is enabled only when `feature(never_type)` is enabled.
15-
#![cfg_attr(nightly, allow(unstable_features), feature(never_type))]
15+
#![cfg_attr(
16+
nightly,
17+
allow(unstable_features, unused_features),
18+
feature(never_type)
19+
)]
1620

1721
#[cfg(feature = "alloc")]
1822
extern crate alloc;

0 commit comments

Comments
 (0)