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

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

19 lines
421 B
Rust
Raw Normal View History

//@ run-pass
#![allow(unused_variables)]
// Regression test for issue 7660
2014-02-18 20:55:18 +00:00
// rvalue lifetime too short when equivalent `match` works
//@ pretty-expanded FIXME #23616
use std::collections::HashMap;
2014-02-18 20:55:18 +00:00
struct A(isize, isize);
2014-02-18 20:55:18 +00:00
pub fn main() {
let mut m: HashMap<isize, A> = HashMap::new();
2014-02-18 20:55:18 +00:00
m.insert(1, A(0, 0));
let A(ref _a, ref _b) = m[&1];
let (a, b) = match m[&1] { A(ref _a, ref _b) => (_a, _b) };
2014-02-18 20:55:18 +00:00
}