blob: 40a4232717db2af5088138d4cbeef24d43df3e45 [file]
use std::str;
fn main() {
let v = ~"test";
let sslice = v.slice(0, v.len());
//~^ ERROR borrowed value does not live long enough
fail!(sslice);
}