summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/macros-in-type.rs
blob: 19ed58eceb9647d3e342cead2f4af6ddb39afc39 (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass
// aux-build:test-macros.rs

#[macro_use]
extern crate test_macros;

const C: identity!(u8) = 10;

fn main() {
    let c: u8 = C;
}