We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f89fe32 commit 86b19d4Copy full SHA for 86b19d4
tests/ui/parser/multiline-comments-basic.rs
@@ -1,6 +1,13 @@
1
+//! Test that basic multiline comments are parsed correctly.
2
+//!
3
+//! This checks that the lexer properly handles `/* */` style comments
4
+//! without causing parsing errors.
5
6
+//! Feature implementation test for <https://github.com/rust-lang/rust/issues/66>.
7
+
8
//@ run-pass
9
10
/*
- * This is a multi-line oldcomment.
11
+ * This is a multi-line comment.
12
*/
-pub fn main() { }
13
+pub fn main() {}
0 commit comments