mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
13 lines
286 B
Rust
13 lines
286 B
Rust
//! 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! */
|
|
5;
|
|
/*****! certainly not I */
|
|
}
|