2019-03-14 05:59:30 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
|
|
|
#![allow(dead_code, unused_variables)]
|
|
|
|
#![warn(clippy::string_lit_as_bytes)]
|
|
|
|
|
|
|
|
fn str_lit_as_bytes() {
|
|
|
|
let bs = b"hello there";
|
|
|
|
|
2019-03-10 10:06:19 +00:00
|
|
|
let bs = br###"raw string with 3# plus " ""###;
|
2019-03-14 05:59:30 +00:00
|
|
|
|
2019-03-10 10:06:19 +00:00
|
|
|
// no warning, because these cannot be written as byte string literals:
|
2019-03-14 05:59:30 +00:00
|
|
|
let ubs = "☃".as_bytes();
|
2019-03-10 10:06:19 +00:00
|
|
|
let ubs = "hello there! this is a very long string".as_bytes();
|
2019-03-14 05:59:30 +00:00
|
|
|
|
|
|
|
let strify = stringify!(foobar).as_bytes();
|
|
|
|
|
|
|
|
let includestr = include_bytes!("entry.rs");
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|