2025-07-18 22:06:07 +05:00
|
|
|
//! Regression test for https://github.com/rust-lang/rust/issues/10638
|
|
|
|
|
|
2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2013-11-24 23:23:50 -05:00
|
|
|
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;
|
2013-11-24 23:23:50 -05:00
|
|
|
/*****! certainly not I */
|
|
|
|
|
}
|