Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve needless_rwa_string_hashes clippy lint in test suite
error: unnecessary hashes around raw string literal --> tests/test.rs:683:17 | 683 | check_spans(r###"r#"abc"#"###, &[(1, 0, 1, 8)]); | ^^^^^^^^^^^^^^^^^ help: try: `r##"r#"abc"#"##` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes = note: `-D clippy::needless-raw-string-hashes` implied by `-D clippy::all` error: unnecessary hashes around raw string literal --> tests/test.rs:684:17 | 684 | check_spans(r###"r#"ábc"#"###, &[(1, 0, 1, 8)]); | ^^^^^^^^^^^^^^^^^ help: try: `r##"r#"ábc"#"##` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes
- Loading branch information