mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
Add test involving unused_qualifications
This commit is contained in:
parent
8305a8cc8a
commit
3a80d0325a
1 changed files with 16 additions and 0 deletions
16
tests/test_lints.rs
Normal file
16
tests/test_lints.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
use thiserror::Error;
|
||||
|
||||
pub use std::error::Error;
|
||||
|
||||
#[test]
|
||||
fn test_unused_qualifications() {
|
||||
#![deny(unused_qualifications)]
|
||||
|
||||
// Expansion of derive(Error) macro can't know whether something like
|
||||
// std::error::Error is already imported in the caller's scope so it must
|
||||
// suppress unused_qualifications.
|
||||
|
||||
#[derive(Debug, Error)]
|
||||
#[error("...")]
|
||||
pub struct MyError;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue