1
1
error: unnecessary raw string literal
2
- --> $DIR/needless_raw_string.rs:6 :5
2
+ --> $DIR/needless_raw_string.rs:5 :5
3
3
|
4
4
LL | r#"aaa"#;
5
5
| ^^^^^^^^
@@ -13,7 +13,7 @@ LL + "aaa";
13
13
|
14
14
15
15
error: unnecessary raw string literal
16
- --> $DIR/needless_raw_string.rs:9 :5
16
+ --> $DIR/needless_raw_string.rs:8 :5
17
17
|
18
18
LL | br#"aaa"#;
19
19
| ^^^^^^^^^
@@ -25,7 +25,7 @@ LL + b"aaa";
25
25
|
26
26
27
27
error: unnecessary raw string literal
28
- --> $DIR/needless_raw_string.rs:12 :5
28
+ --> $DIR/needless_raw_string.rs:11 :5
29
29
|
30
30
LL | cr#"aaa"#;
31
31
| ^^^^^^^^^
@@ -37,7 +37,7 @@ LL + c"aaa";
37
37
|
38
38
39
39
error: unnecessary raw string literal
40
- --> $DIR/needless_raw_string.rs:16 :5
40
+ --> $DIR/needless_raw_string.rs:15 :5
41
41
|
42
42
LL | / r#"
43
43
LL | | a
@@ -56,7 +56,7 @@ LL ~ ";
56
56
|
57
57
58
58
error: unnecessary raw string literal
59
- --> $DIR/needless_raw_string.rs:22 :5
59
+ --> $DIR/needless_raw_string.rs:21 :5
60
60
|
61
61
LL | r"no hashes";
62
62
| ^^^^^^^^^^^^
@@ -68,7 +68,7 @@ LL + "no hashes";
68
68
|
69
69
70
70
error: unnecessary raw string literal
71
- --> $DIR/needless_raw_string.rs:23 :5
71
+ --> $DIR/needless_raw_string.rs:22 :5
72
72
|
73
73
LL | br"no hashes";
74
74
| ^^^^^^^^^^^^^
@@ -80,7 +80,7 @@ LL + b"no hashes";
80
80
|
81
81
82
82
error: unnecessary raw string literal
83
- --> $DIR/needless_raw_string.rs:24 :5
83
+ --> $DIR/needless_raw_string.rs:23 :5
84
84
|
85
85
LL | cr"no hashes";
86
86
| ^^^^^^^^^^^^^
0 commit comments