Sign in
rust
/
rust
/
4d2f9ca08dfd4f248bbbaaa8d7708412129b28e9
/
.
/
tests
/
ui
/
array-slice-vec
/
slice-subslice-ref-lifetime.rs
blob: 11f5750ab9bbb27bb82dc6ca1aa153249d7e6286 [
file
]
//! Regression test for https://github.com/rust-lang/rust/issues/3888
//@ check-pass
#![
allow
(
dead_code
)]
fn
vec_peek
<
'r, T>(v: &'
r
[
T
])
->
&
'
r
[
T
]
{
&
v
[
1.
.
5
]
}
pub
fn
main
()
{}