|
1 | 1 | error: expected identifier or string literal
|
2 |
| - --> $DIR/raw-identifiers.rs:28:22 |
| 2 | + --> $DIR/concat-raw-identifiers.rs:28:22 |
3 | 3 | |
|
4 | 4 | LL | let ${concat(r#abc, abc)}: () = ();
|
5 | 5 | | ^^^^^
|
6 | 6 |
|
7 | 7 | error: expected identifier or string literal
|
8 |
| - --> $DIR/raw-identifiers.rs:32:27 |
| 8 | + --> $DIR/concat-raw-identifiers.rs:32:27 |
9 | 9 | |
|
10 | 10 | LL | let ${concat(abc, r#abc)}: () = ();
|
11 | 11 | | ^^^^^
|
12 | 12 |
|
13 | 13 | error: expected identifier or string literal
|
14 |
| - --> $DIR/raw-identifiers.rs:35:22 |
| 14 | + --> $DIR/concat-raw-identifiers.rs:35:22 |
15 | 15 | |
|
16 | 16 | LL | let ${concat(r#abc, r#abc)}: () = ();
|
17 | 17 | | ^^^^^
|
18 | 18 |
|
19 | 19 | error: `${concat(..)}` currently does not support raw identifiers
|
20 |
| - --> $DIR/raw-identifiers.rs:5:28 |
| 20 | + --> $DIR/concat-raw-identifiers.rs:5:28 |
21 | 21 | |
|
22 | 22 | LL | let ${concat(abc, $rhs)}: () = ();
|
23 | 23 | | ^^^
|
24 | 24 |
|
25 | 25 | error: `${concat(..)}` currently does not support raw identifiers
|
26 |
| - --> $DIR/raw-identifiers.rs:12:23 |
| 26 | + --> $DIR/concat-raw-identifiers.rs:12:23 |
27 | 27 | |
|
28 | 28 | LL | let ${concat($lhs, abc)}: () = ();
|
29 | 29 | | ^^^
|
30 | 30 |
|
31 | 31 | error: `${concat(..)}` currently does not support raw identifiers
|
32 |
| - --> $DIR/raw-identifiers.rs:19:23 |
| 32 | + --> $DIR/concat-raw-identifiers.rs:19:23 |
33 | 33 | |
|
34 | 34 | LL | let ${concat($lhs, $rhs)}: () = ();
|
35 | 35 | | ^^^
|
36 | 36 |
|
37 | 37 | error: `${concat(..)}` currently does not support raw identifiers
|
38 |
| - --> $DIR/raw-identifiers.rs:19:29 |
| 38 | + --> $DIR/concat-raw-identifiers.rs:19:29 |
39 | 39 | |
|
40 | 40 | LL | let ${concat($lhs, $rhs)}: () = ();
|
41 | 41 | | ^^^
|
42 | 42 |
|
43 | 43 | error: `${concat(..)}` currently does not support raw identifiers
|
44 |
| - --> $DIR/raw-identifiers.rs:19:23 |
| 44 | + --> $DIR/concat-raw-identifiers.rs:19:23 |
45 | 45 | |
|
46 | 46 | LL | let ${concat($lhs, $rhs)}: () = ();
|
47 | 47 | | ^^^
|
48 | 48 | |
|
49 | 49 | = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
50 | 50 |
|
51 | 51 | error: `${concat(..)}` currently does not support raw identifiers
|
52 |
| - --> $DIR/raw-identifiers.rs:42:28 |
| 52 | + --> $DIR/concat-raw-identifiers.rs:42:28 |
53 | 53 | |
|
54 | 54 | LL | let ${concat(abc, $rhs)}: () = ();
|
55 | 55 | | ^^^
|
56 | 56 |
|
57 | 57 | error: `${concat(..)}` currently does not support raw identifiers
|
58 |
| - --> $DIR/raw-identifiers.rs:49:23 |
| 58 | + --> $DIR/concat-raw-identifiers.rs:49:23 |
59 | 59 | |
|
60 | 60 | LL | let ${concat($lhs, abc)}: () = ();
|
61 | 61 | | ^^^
|
62 | 62 |
|
63 | 63 | error: `${concat(..)}` currently does not support raw identifiers
|
64 |
| - --> $DIR/raw-identifiers.rs:56:23 |
| 64 | + --> $DIR/concat-raw-identifiers.rs:56:23 |
65 | 65 | |
|
66 | 66 | LL | let ${concat($lhs, $rhs)}: () = ();
|
67 | 67 | | ^^^
|
68 | 68 |
|
69 | 69 | error: `${concat(..)}` currently does not support raw identifiers
|
70 |
| - --> $DIR/raw-identifiers.rs:56:29 |
| 70 | + --> $DIR/concat-raw-identifiers.rs:56:29 |
71 | 71 | |
|
72 | 72 | LL | let ${concat($lhs, $rhs)}: () = ();
|
73 | 73 | | ^^^
|
74 | 74 |
|
75 | 75 | error: `${concat(..)}` currently does not support raw identifiers
|
76 |
| - --> $DIR/raw-identifiers.rs:56:23 |
| 76 | + --> $DIR/concat-raw-identifiers.rs:56:23 |
77 | 77 | |
|
78 | 78 | LL | let ${concat($lhs, $rhs)}: () = ();
|
79 | 79 | | ^^^
|
80 | 80 | |
|
81 | 81 | = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
82 | 82 |
|
83 | 83 | error: expected pattern, found `$`
|
84 |
| - --> $DIR/raw-identifiers.rs:28:13 |
| 84 | + --> $DIR/concat-raw-identifiers.rs:28:13 |
85 | 85 | |
|
86 | 86 | LL | let ${concat(r#abc, abc)}: () = ();
|
87 | 87 | | ^ expected pattern
|
|
0 commit comments