mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
15 lines
194 B
Rust
15 lines
194 B
Rust
//@ run-pass
|
|
|
|
// Regression test for #47096.
|
|
|
|
fn foo(s: &[i32]) -> &[i32] {
|
|
let &[ref xs @ ..] = s;
|
|
xs
|
|
}
|
|
|
|
fn main() {
|
|
let x = [1, 2, 3];
|
|
let y = foo(&x);
|
|
assert_eq!(x, y);
|
|
}
|