2025-06-29 17:43:51 +05:00
|
|
|
//! Test that basic multiline comments are parsed correctly.
|
|
|
|
|
//!
|
|
|
|
|
//! Feature implementation test for <https://github.com/rust-lang/rust/issues/66>.
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2010-07-08 17:01:25 +08:00
|
|
|
/*
|
2025-06-29 17:43:51 +05:00
|
|
|
* This is a multi-line comment.
|
2010-07-08 17:01:25 +08:00
|
|
|
*/
|
2025-06-29 17:43:51 +05:00
|
|
|
pub fn main() {}
|