rust/tests/used_underscore_binding_mac...

17 lines
345 B
Rust
Raw Normal View History

2015-12-21 17:40:19 +08:00
#![feature(plugin)]
#![plugin(clippy)]
extern crate rustc_serialize;
2016-03-20 00:48:29 +08:00
/// Test that we do not lint for unused underscores in a `MacroAttribute` expansion
2015-12-21 17:40:19 +08:00
#[deny(used_underscore_binding)]
#[derive(RustcEncodable)]
struct MacroAttributesTest {
_foo: u32,
}
#[test]
fn macro_attributes_test() {
let _ = MacroAttributesTest { _foo: 0 };
2015-12-21 17:40:19 +08:00
}