]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/inner-attr-after-doc-comment.rs
Rollup merge of #106707 - ehuss:remove-dupe-sha-1, r=Mark-Simulacrum
[rust.git] / tests / ui / parser / inner-attr-after-doc-comment.rs
1 #![feature(lang_items)]
2 /**
3  * My module
4  */
5
6 #![recursion_limit="100"]
7 //~^ ERROR an inner attribute is not permitted following an outer doc comment
8 fn main() {}