2023-04-23 06:03:09 -05:00
|
|
|
//@run-rustfix
|
2023-05-05 10:45:49 -05:00
|
|
|
//@aux-build:macro_rules.rs
|
2019-03-14 00:59:30 -05:00
|
|
|
|
|
|
|
#![allow(dead_code, unused_variables)]
|
|
|
|
#![warn(clippy::string_lit_as_bytes)]
|
|
|
|
|
2023-05-05 10:45:49 -05:00
|
|
|
#[macro_use]
|
|
|
|
extern crate macro_rules;
|
|
|
|
|
|
|
|
macro_rules! b {
|
|
|
|
($b:literal) => {
|
|
|
|
const B: &[u8] = $b.as_bytes();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-03-14 00:59:30 -05:00
|
|
|
fn str_lit_as_bytes() {
|
|
|
|
let bs = "hello there".as_bytes();
|
|
|
|
|
2019-03-10 05:06:19 -05:00
|
|
|
let bs = r###"raw string with 3# plus " ""###.as_bytes();
|
2019-03-14 00:59:30 -05:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
let bs = "lit to string".to_string().into_bytes();
|
|
|
|
let bs = "lit to owned".to_owned().into_bytes();
|
|
|
|
|
2023-05-05 10:45:49 -05:00
|
|
|
b!("warning");
|
|
|
|
|
|
|
|
string_lit_as_bytes!("no warning");
|
|
|
|
|
2019-03-10 05:06:19 -05:00
|
|
|
// no warning, because these cannot be written as byte string literals:
|
2019-03-14 00:59:30 -05:00
|
|
|
let ubs = "☃".as_bytes();
|
2019-03-10 05:06:19 -05:00
|
|
|
let ubs = "hello there! this is a very long string".as_bytes();
|
2019-03-14 00:59:30 -05:00
|
|
|
|
2021-03-25 13:29:11 -05:00
|
|
|
let ubs = "☃".to_string().into_bytes();
|
|
|
|
let ubs = "this is also too long and shouldn't be fixed".to_string().into_bytes();
|
|
|
|
|
2019-03-14 00:59:30 -05:00
|
|
|
let strify = stringify!(foobar).as_bytes();
|
|
|
|
|
2020-06-09 09:36:01 -05:00
|
|
|
let current_version = env!("CARGO_PKG_VERSION").as_bytes();
|
|
|
|
|
2021-04-22 04:31:13 -05:00
|
|
|
let includestr = include_str!("string_lit_as_bytes.rs").as_bytes();
|
2019-11-11 16:42:12 -06:00
|
|
|
|
|
|
|
let _ = "string with newline\t\n".as_bytes();
|
2022-12-17 07:12:54 -06:00
|
|
|
|
|
|
|
let _ = match "x".as_bytes() {
|
|
|
|
b"xx" => 0,
|
|
|
|
[b'x', ..] => 1,
|
|
|
|
_ => 2,
|
|
|
|
};
|
2019-03-14 00:59:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|