summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/inner-attr-after-doc-comment.rs
blob: 36f4191f06bc37edc571d7941877dae1dd628c5d (plain)
1
2
3
4
5
6
7
8
#![feature(lang_items)]
/**
 * My module
 */

#![recursion_limit="100"]
//~^ ERROR an inner attribute is not permitted following an outer doc comment
fn main() {}