2019-05-22 01:09:58 +03:00
|
|
|
// aux-build:test-macros.rs
|
2018-05-22 08:01:21 -07:00
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
#[macro_use]
|
|
|
|
extern crate test_macros;
|
2018-05-22 08:01:21 -07:00
|
|
|
|
|
|
|
macro_rules! id {
|
|
|
|
($($t:tt)*) => ($($t)*)
|
|
|
|
}
|
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
#[identity_attr]
|
2018-05-22 08:01:21 -07:00
|
|
|
id![static X: u32 = 'a';]; //~ ERROR: mismatched types
|
|
|
|
|
|
|
|
|
|
|
|
fn main() {}
|