blob: 38cd7acbdfa131ea1e493684b9f1fea1111f6818 [file] [log] [blame]
// Test slicing expressions doesn't defeat the borrow checker.
fn main() {
let y;
{
let x: &[isize] = &vec![1, 2, 3, 4, 5];
//~^ ERROR temporary value dropped while borrowed
y = &x[1..];
}
y.use_ref();
}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }