summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/call-site.rs
blob: 12c77250c0e72c6d7bb846d97c932627f255bc9d (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass
// aux-build:call-site.rs

extern crate call_site;

fn main() {
    let x1 = 10;
    call_site::check!(let x2 = x1;);
    let x6 = x5;
}