11error: unnecessary hashes around raw string literal
2- --> $DIR/needless_raw_string_hashes.rs:6 :5
2+ --> $DIR/needless_raw_string_hashes.rs:5 :5
33 |
44LL | r#"\aaa"#;
55 | ^^^^^^^^^
@@ -13,7 +13,7 @@ LL + r"\aaa";
1313 |
1414
1515error: unnecessary hashes around raw string literal
16- --> $DIR/needless_raw_string_hashes.rs:7 :5
16+ --> $DIR/needless_raw_string_hashes.rs:6 :5
1717 |
1818LL | r##"Hello "world"!"##;
1919 | ^^^^^^^^^^^^^^^^^^^^^
@@ -25,7 +25,7 @@ LL + r#"Hello "world"!"#;
2525 |
2626
2727error: unnecessary hashes around raw string literal
28- --> $DIR/needless_raw_string_hashes.rs:8 :5
28+ --> $DIR/needless_raw_string_hashes.rs:7 :5
2929 |
3030LL | r######" "### "## "# "######;
3131 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -37,7 +37,7 @@ LL + r####" "### "## "# "####;
3737 |
3838
3939error: unnecessary hashes around raw string literal
40- --> $DIR/needless_raw_string_hashes.rs:9 :5
40+ --> $DIR/needless_raw_string_hashes.rs:8 :5
4141 |
4242LL | r######" "aa" "# "## "######;
4343 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -49,7 +49,7 @@ LL + r###" "aa" "# "## "###;
4949 |
5050
5151error: unnecessary hashes around raw string literal
52- --> $DIR/needless_raw_string_hashes.rs:10 :5
52+ --> $DIR/needless_raw_string_hashes.rs:9 :5
5353 |
5454LL | br#"\aaa"#;
5555 | ^^^^^^^^^^
@@ -61,7 +61,7 @@ LL + br"\aaa";
6161 |
6262
6363error: unnecessary hashes around raw string literal
64- --> $DIR/needless_raw_string_hashes.rs:11 :5
64+ --> $DIR/needless_raw_string_hashes.rs:10 :5
6565 |
6666LL | br##"Hello "world"!"##;
6767 | ^^^^^^^^^^^^^^^^^^^^^^
@@ -73,7 +73,7 @@ LL + br#"Hello "world"!"#;
7373 |
7474
7575error: unnecessary hashes around raw string literal
76- --> $DIR/needless_raw_string_hashes.rs:12 :5
76+ --> $DIR/needless_raw_string_hashes.rs:11 :5
7777 |
7878LL | br######" "### "## "# "######;
7979 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -85,7 +85,7 @@ LL + br####" "### "## "# "####;
8585 |
8686
8787error: unnecessary hashes around raw string literal
88- --> $DIR/needless_raw_string_hashes.rs:13 :5
88+ --> $DIR/needless_raw_string_hashes.rs:12 :5
8989 |
9090LL | br######" "aa" "# "## "######;
9191 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -97,7 +97,7 @@ LL + br###" "aa" "# "## "###;
9797 |
9898
9999error: unnecessary hashes around raw string literal
100- --> $DIR/needless_raw_string_hashes.rs:14 :5
100+ --> $DIR/needless_raw_string_hashes.rs:13 :5
101101 |
102102LL | cr#"\aaa"#;
103103 | ^^^^^^^^^^
@@ -109,7 +109,7 @@ LL + cr"\aaa";
109109 |
110110
111111error: unnecessary hashes around raw string literal
112- --> $DIR/needless_raw_string_hashes.rs:15 :5
112+ --> $DIR/needless_raw_string_hashes.rs:14 :5
113113 |
114114LL | cr##"Hello "world"!"##;
115115 | ^^^^^^^^^^^^^^^^^^^^^^
@@ -121,7 +121,7 @@ LL + cr#"Hello "world"!"#;
121121 |
122122
123123error: unnecessary hashes around raw string literal
124- --> $DIR/needless_raw_string_hashes.rs:16 :5
124+ --> $DIR/needless_raw_string_hashes.rs:15 :5
125125 |
126126LL | cr######" "### "## "# "######;
127127 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -133,7 +133,7 @@ LL + cr####" "### "## "# "####;
133133 |
134134
135135error: unnecessary hashes around raw string literal
136- --> $DIR/needless_raw_string_hashes.rs:17 :5
136+ --> $DIR/needless_raw_string_hashes.rs:16 :5
137137 |
138138LL | cr######" "aa" "# "## "######;
139139 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -145,7 +145,7 @@ LL + cr###" "aa" "# "## "###;
145145 |
146146
147147error: unnecessary hashes around raw string literal
148- --> $DIR/needless_raw_string_hashes.rs:19 :5
148+ --> $DIR/needless_raw_string_hashes.rs:18 :5
149149 |
150150LL | / r#"
151151LL | | \a
@@ -164,7 +164,7 @@ LL ~ ";
164164 |
165165
166166error: unnecessary hashes around raw string literal
167- --> $DIR/needless_raw_string_hashes.rs:25 :5
167+ --> $DIR/needless_raw_string_hashes.rs:24 :5
168168 |
169169LL | r###"rust"###;
170170 | ^^^^^^^^^^^^^
@@ -176,7 +176,7 @@ LL + r"rust";
176176 |
177177
178178error: unnecessary hashes around raw string literal
179- --> $DIR/needless_raw_string_hashes.rs:26 :5
179+ --> $DIR/needless_raw_string_hashes.rs:25 :5
180180 |
181181LL | r#"hello world"#;
182182 | ^^^^^^^^^^^^^^^^
0 commit comments