rust/tests/ui/traits/new-solver/slice-match-byte-lit.rs
2023-06-24 18:41:27 +00:00

12 lines
199 B
Rust

// compile-flags: -Ztrait-solver=next
// known-bug: rust-lang/trait-system-refactor-initiative#38
fn test(s: &[u8]) {
match &s[0..3] {
b"uwu" => {}
_ => {}
}
}
fn main() {}