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

fn /// document
foo() {}
//~^^ ERROR expected identifier, found doc comment `/// document`

fn main() {
    foo();
}