We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dac2423 commit 84ff001Copy full SHA for 84ff001
tests/source/issue-4312.rs
@@ -1,8 +1,22 @@
1
+// issue 4312
2
fn main() {
3
/* " */
4
println!("Hello, world!");
5
/* abc " */
6
7
/* " abc */
8
9
+ let y = 4;
10
+ let x = match 1 + y == 3 {
11
+ True => 3,
12
+ False => 4,
13
+ /* " unreachable */
14
+ };
15
+}
16
+
17
+// issue 4806
18
+enum X {
19
+ A,
20
+ B,
21
+ /*"*/
22
}
tests/target/issue-4312.rs
0 commit comments