blob: 6d2124c12fe98addb011233f1b737aa6077c341c [file] [log] [blame]
#![allow(clippy::useless_attribute)] //issue #2910
#[macro_use]
extern crate serde_derive;
/// Tests that we do not lint for unused underscores in a `MacroAttribute`
/// expansion
#[deny(clippy::used_underscore_binding)]
#[derive(Deserialize)]
struct MacroAttributesTest {
_foo: u32,
}
#[test]
fn macro_attributes_test() {
let _ = MacroAttributesTest { _foo: 0 };
}
fn main() {}