blob: a43a3c3535a30d6f2bfe6503c325ac4732900521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#![allow(
// clippy is broken and shows wrong warnings
// clippy on stable does not know yet about the lint name
unknown_lints,
// https://github.com/rust-lang/rust-clippy/issues/8867
clippy::derive_partial_eq_without_eq,
)]
mod deserialize_fromstr;
mod serialize_display;
#[path = "../utils.rs"]
mod utils;
use expect_test::expect;
use utils::*;
|