2014-02-18 20:55:18 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-02-05 04:04:10 +00:00
|
|
|
// Regression test for issue 7660
|
2014-02-18 20:55:18 +00:00
|
|
|
// rvalue lifetime too short when equivalent `match` works
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-06 02:33:58 +00:00
|
|
|
#![feature(collections)]
|
|
|
|
|
2014-02-20 03:29:58 +00:00
|
|
|
extern crate collections;
|
|
|
|
|
2014-05-30 02:03:06 +00:00
|
|
|
use std::collections::HashMap;
|
2014-02-18 20:55:18 +00:00
|
|
|
|
|
|
|
struct A(int, int);
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let mut m: HashMap<int, A> = HashMap::new();
|
|
|
|
m.insert(1, A(0, 0));
|
|
|
|
|
2015-03-22 01:15:47 +00:00
|
|
|
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
|
|
|
}
|