2018-08-18 02:04:50 +03:00
|
|
|
// compile-pass
|
2019-05-22 01:09:58 +03:00
|
|
|
// aux-build:test-macros.rs
|
2017-01-09 01:31:14 -08:00
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
#[macro_use]
|
|
|
|
extern crate test_macros;
|
2017-01-09 01:31:14 -08:00
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
#[identity_attr]
|
2017-01-09 01:31:14 -08:00
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = Foo;
|
|
|
|
}
|