mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 05:30:47 +00:00
15 lines
206 B
Rust
15 lines
206 B
Rust
//@ aux-build:test-macros.rs
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
|
|
macro_rules! id {
|
|
($($t:tt)*) => ($($t)*)
|
|
}
|
|
|
|
#[identity_attr]
|
|
id![static X: u32 = 'a';]; //~ ERROR: mismatched types
|
|
|
|
|
|
fn main() {}
|