Files
rust/tests/ui/parser/doc-comment-parsing.rs

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

13 lines
286 B
Rust
Raw Permalink Normal View History

2025-07-18 22:06:07 +05:00
//! Regression test for https://github.com/rust-lang/rust/issues/10638
//@ run-pass
pub fn main() {
//// I am not a doc comment!
////////////////// still not a doc comment
/////**** nope, me neither */
/*** And neither am I! */
2015-01-25 22:05:03 +01:00
5;
/*****! certainly not I */
}