about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/string_lit_as_bytes.rs
blob: 785d8f1e0f6ba1e10b63898bc56ec3fece0dc282 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//@aux-build:macro_rules.rs

#![allow(clippy::needless_raw_string_hashes, 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.as_bytes();
        //~^ string_lit_as_bytes
    };
}

fn str_lit_as_bytes() {
    let bs = "hello there".as_bytes();
    //~^ string_lit_as_bytes

    let bs = r###"raw string with 3# plus " ""###.as_bytes();
    //~^ string_lit_as_bytes

    let bs = "lit to string".to_string().into_bytes();
    //~^ string_lit_as_bytes
    let bs = "lit to owned".to_owned().into_bytes();
    //~^ string_lit_as_bytes

    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();

    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();

    let includestr = include_str!("string_lit_as_bytes.rs").as_bytes();
    //~^ string_lit_as_bytes

    let _ = "string with newline\t\n".as_bytes();
    //~^ string_lit_as_bytes

    let _ = match "x".as_bytes() {
        b"xx" => 0,
        [b'x', ..] => 1,
        _ => 2,
    };
}

fn main() {}