]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/macro/macro-doc-comments-2.rs
Merge commit '0eff589afc83e21a03a168497bbab6b4dfbb4ef6' into clippyup
[rust.git] / src / test / ui / parser / macro / macro-doc-comments-2.rs
1 macro_rules! inner {
2     (#![$inner:meta]) => ()
3 }
4
5 inner! {
6     /// Outer
7 } //~^ ERROR no rules expected the token `[`
8
9 fn main() { }