]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/macro/macro-doc-comments-1.rs
Rollup merge of #91587 - nrc:dispatchfromdyn-docs, r=yaahc
[rust.git] / src / test / ui / parser / macro / macro-doc-comments-1.rs
1 macro_rules! outer {
2     (#[$outer:meta]) => ()
3 }
4
5 outer! {
6     //! Inner
7 } //~^ ERROR no rules expected the token `!`
8
9 fn main() { }