Add test involving unused_qualifications

This commit is contained in:
David Tolnay 2020-06-15 16:12:11 -07:00
parent 8305a8cc8a
commit 3a80d0325a
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

16
tests/test_lints.rs Normal file
View 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;
}