mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
12 lines
153 B
Rust
12 lines
153 B
Rust
// compile-flags: -Ztrait-solver=next
|
|
// check-pass
|
|
|
|
fn test(s: &[u8]) {
|
|
match &s[0..3] {
|
|
b"uwu" => {}
|
|
_ => {}
|
|
}
|
|
}
|
|
|
|
fn main() {}
|