summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/macro/macro-doc-comments-2.rs
blob: 8f33720ae80eb3419e76544085a1001d958151e8 (plain)
1
2
3
4
5
6
7
8
9
macro_rules! inner {
    (#![$inner:meta]) => ()
}

inner! {
    /// Outer
} //~^ ERROR no rules expected the token `[`

fn main() { }