about summary refs log tree commit diff
path: root/tests/ui/macros/lint-trailing-macro-call.rs
blob: 78b861f1df17a21969cc4cd3d02bcc9224725319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ check-pass
//
// Ensures that we properly lint
// a removed 'expression' resulting from a macro
// in trailing expression position

macro_rules! expand_it {
    () => {
        #[cfg(false)] 25; //~  WARN trailing semicolon in macro
                          //~| WARN this was previously
    }
}

fn main() {
    expand_it!()
}