mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-04 03:07:25 +00:00
11 lines
220 B
Rust
11 lines
220 B
Rust
//! Test that basic multiline comments are parsed correctly.
|
|
//!
|
|
//! Feature implementation test for <https://github.com/rust-lang/rust/issues/66>.
|
|
|
|
//@ run-pass
|
|
|
|
/*
|
|
* This is a multi-line comment.
|
|
*/
|
|
pub fn main() {}
|