mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
13 lines
283 B
Rust
13 lines
283 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::byte_char_slices)]
|
|
|
|
fn main() {
|
|
let bad = b"abc";
|
|
let quotes = b"\"Hi";
|
|
let quotes = b"'Sup";
|
|
let escapes = b"\x42Esc";
|
|
|
|
let good = &[b'a', 0x42];
|
|
let good = [b'a', b'a'];
|
|
let good: u8 = [b'a', b'c'].into_iter().sum();
|
|
}
|