Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix needless_borrow clippy lint in new control character test
warning: this expression creates a reference which is immediately dereferenced by the compiler --> tests/test.rs:2515:9 | 2515 | &"\"\t\n\r\"", | ^^^^^^^^^^^^^ help: change this to: `"\"\t\n\r\""` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `-W clippy::needless-borrow` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::needless_borrow)]`
- Loading branch information