about summary refs log tree commit diff
path: root/tests/ui/proc-macro/macros-in-type.rs
blob: 1874bb80db35fe5a66b6a6c12465884aef74bdcd (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ check-pass
//@ proc-macro: test-macros.rs

#[macro_use]
extern crate test_macros;

const C: identity!(u8) = 10;

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