]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/doc-before-mod-rbrace.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / doc-before-mod-rbrace.rs
1 mod Foo {
2 /// document
3 //~^ ERROR expected item after doc comment
4 }
5
6 fn main() {}