mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 04:47:38 +03:00
Fix unused import in test when built without std
warning: unused import: `std::path::PathBuf` --> tests/test_expr.rs:4:5 | 4 | use std::path::PathBuf; | ^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
This commit is contained in:
parent
eecd247cdf
commit
8b5f2d78f0
1 changed files with 1 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
#![allow(clippy::iter_cloned_collect, clippy::uninlined_format_args)]
|
||||
|
||||
use core::fmt::Display;
|
||||
#[cfg(feature = "std")]
|
||||
use std::path::PathBuf;
|
||||
use thiserror::Error;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue