12 lines
149 B
Rust
12 lines
149 B
Rust
//@ compile-flags: -Znext-solver
|
|
//@ check-pass
|
|
|
|
fn test(s: &[u8]) {
|
|
match &s[0..3] {
|
|
b"uwu" => {}
|
|
_ => {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|