]> git.proxmox.com Git - rustc.git/blob - src/test/ui/run-pass/issues/issue-8783.rs
New upstream version 1.30.0+dfsg1
[rustc.git] / src / test / ui / run-pass / issues / issue-8783.rs
1 // Copyright 2014 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 // run-pass
12 // pretty-expanded FIXME #23616
13
14 use std::default::Default;
15
16 struct X { pub x: usize }
17 impl Default for X {
18 fn default() -> X {
19 X { x: 42 }
20 }
21 }
22
23 struct Y<T> { pub y: T }
24 impl<T: Default> Default for Y<T> {
25 fn default() -> Y<T> {
26 Y { y: Default::default() }
27 }
28 }
29
30 fn main() {
31 let X { x: _ } = Default::default();
32 let Y { y: X { x } } = Default::default();
33 }