mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
13 lines
349 B
Rust
13 lines
349 B
Rust
#![allow(unused)]
|
|
#![warn(clippy::byte_char_slices)]
|
|
|
|
fn main() {
|
|
let bad = &[b'a', b'b', b'c'];
|
|
let quotes = &[b'"', b'H', b'i'];
|
|
let quotes = &[b'\'', b'S', b'u', b'p'];
|
|
let escapes = &[b'\x42', b'E', b's', b'c'];
|
|
|
|
let good = &[b'a', 0x42];
|
|
let good = vec![b'a', b'a'];
|
|
let good: u8 = [b'a', b'c'].into_iter().sum();
|
|
}
|