Files
rust/tests/ui/parser/multiline-comments-basic.rs

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

11 lines
220 B
Rust
Raw Normal View History

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>.
//@ run-pass
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() {}