Suppress unknown_lints warning in test suite
When building with beta and older rustc: error: unknown lint: `mixed_script_confusables` --> test_suite/tests/test_gen.rs:7:10 | 7 | #![allow(mixed_script_confusables, clippy::trivially_copy_pass_by_ref)] | ^^^^^^^^^^^^^^^^^^^^^^^^ | note: the lint level is defined here --> test_suite/tests/test_gen.rs:5:9 | 5 | #![deny(warnings)] | ^^^^^^^^ = note: `#[deny(unknown_lints)]` implied by `#[deny(warnings)]`
This commit is contained in:
parent
764ebd9b17
commit
c619b2a7c4
@ -4,7 +4,11 @@
|
||||
|
||||
#![deny(warnings)]
|
||||
#![cfg_attr(feature = "unstable", feature(non_ascii_idents))]
|
||||
#![allow(mixed_script_confusables, clippy::trivially_copy_pass_by_ref)]
|
||||
#![allow(
|
||||
unknown_lints,
|
||||
mixed_script_confusables,
|
||||
clippy::trivially_copy_pass_by_ref
|
||||
)]
|
||||
|
||||
use serde::de::DeserializeOwned;
|
||||
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
||||
|
Loading…
x
Reference in New Issue
Block a user