Merge commit '371120bdbf' into clippyup

This commit is contained in:
Philipp Krones 2023-05-05 17:45:49 +02:00
commit 4cb05193fb
No known key found for this signature in database
GPG key ID: 1CA0DF2AF59D68A5
152 changed files with 2226 additions and 440 deletions

View file

@ -1,8 +1,18 @@
//@run-rustfix
//@aux-build:macro_rules.rs
#![allow(dead_code, unused_variables)]
#![warn(clippy::string_lit_as_bytes)]
#[macro_use]
extern crate macro_rules;
macro_rules! b {
($b:literal) => {
const B: &[u8] = b"warning";
};
}
fn str_lit_as_bytes() {
let bs = b"hello there";
@ -11,6 +21,10 @@ fn str_lit_as_bytes() {
let bs = b"lit to string".to_vec();
let bs = b"lit to owned".to_vec();
b!("warning");
string_lit_as_bytes!("no warning");
// 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();