]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-10392.rs
auto merge of #20154 : P1start/rust/qualified-assoc-type-generics, r=nikomatsakis
[rust.git] / src / test / run-pass / issue-10392.rs
1 // Copyright 2013 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 struct A { foo: int }
12 struct B { a: int, b: int, c: int }
13
14 fn mka() -> A { panic!() }
15 fn mkb() -> B { panic!() }
16
17 fn test() {
18     let A { foo, } = mka();
19     let A {
20         foo,
21     } = mka();
22
23     let B { a, b, c, } = mkb();
24
25     match mka() {
26         A { foo: _foo, } => {}
27     }
28
29     match Some(mka()) {
30         Some(A { foo: _foo, }) => {}
31         None => {}
32     }
33 }
34
35 pub fn main() {
36     if false { test() }
37 }