1
Fork 0

Merge commit '0e87918536' into clippyup

This commit is contained in:
flip1995 2021-03-25 19:29:11 +01:00
parent e06731bb28
commit 9f6b5de7de
412 changed files with 5715 additions and 2849 deletions

View file

@ -8,10 +8,16 @@ fn str_lit_as_bytes() {
let bs = r###"raw string with 3# plus " ""###.as_bytes();
let bs = "lit to string".to_string().into_bytes();
let bs = "lit to owned".to_owned().into_bytes();
// no warning, because these cannot be written as byte string literals:
let ubs = "".as_bytes();
let ubs = "hello there! this is a very long string".as_bytes();
let ubs = "".to_string().into_bytes();
let ubs = "this is also too long and shouldn't be fixed".to_string().into_bytes();
let strify = stringify!(foobar).as_bytes();
let current_version = env!("CARGO_PKG_VERSION").as_bytes();