rust/tests/ui/parser/doc-comment-in-stmt.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
316 B
Rust
Raw Normal View History

fn foo() -> bool {
false
//!self.allow_ty_infer()
//~^ ERROR found doc comment
}
fn bar() -> bool {
false
/*! bar */ //~ ERROR found doc comment
}
fn baz() -> i32 {
1 /** baz */ //~ ERROR found doc comment
}
fn quux() -> i32 {
2 /*! quux */ //~ ERROR found doc comment
}
fn main() {}