rust/tests/ui/issues/issue-29053.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
175 B
Rust
Raw Normal View History

// run-pass
2016-08-08 19:04:51 +00:00
fn main() {
let x: &'static str = "x";
{
let y = "y".to_string();
let ref mut x = &*x;
*x = &*y;
}
assert_eq!(x, "x");
}