mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 20:17:50 +00:00
21 lines
316 B
Rust
21 lines
316 B
Rust
![]() |
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() {}
|