mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 13:27:38 +03:00
warning: item has both inner and outer attributes --> tests/test_lints.rs:5:1 | 5 | / #[test] 6 | | fn test_unused_qualifications() { 7 | | #![deny(unused_qualifications)] | |___________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mixed_attributes_style = note: `#[warn(clippy::mixed_attributes_style)]` on by default
20 lines
460 B
Rust
20 lines
460 B
Rust
#![allow(clippy::mixed_attributes_style)]
|
|
|
|
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;
|
|
|
|
let _: MyError;
|
|
}
|