
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
8 lines
114 B
Rust
8 lines
114 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
|
|
fn vec_peek<'r, T>(v: &'r [T]) -> &'r [T] {
|
|
&v[1..5]
|
|
}
|
|
|
|
pub fn main() {}
|