blob: 3b61dc1152214791016249132454db90212acee9 [file] [log] [blame]
//@ run-pass
fn main() {
let x: &'static str = "x";
{
let y = "y".to_string();
let ref mut x = &*x;
*x = &*y;
}
assert_eq!(x, "x");
}