rust/src/test/ui/parser/doc-before-mod-rbrace.rs

9 lines
139 B
Rust

// compile-flags: -Z continue-parse-after-error
mod Foo {
/// document
//~^ ERROR expected item after doc comment
}
fn main() {}