summary refs log tree commit diff
path: root/src/test/ui/parser/doc-before-mod-rbrace.rs
blob: 4e0b65ef496db5a613147fd3bc5213ff692d388a (plain)
1
2
3
4
5
6
7
8
// compile-flags: -Z continue-parse-after-error

mod Foo {
    /// document
    //~^ ERROR expected item after doc comment
}

fn main() {}