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