]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/deaggregator_test.rs
Rollup merge of #44453 - tommyip:doc_string_as_mut_str, r=frewsxcv
[rust.git] / src / test / mir-opt / deaggregator_test.rs
1 // Copyright 2016 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 Baz {
12     x: usize,
13     y: f32,
14     z: bool,
15 }
16
17 fn bar(a: usize) -> Baz {
18     Baz { x: a, y: 0.0, z: false }
19 }
20
21 fn main() {}
22
23 // END RUST SOURCE
24 // START rustc.node13.Deaggregator.before.mir
25 // bb0: {
26 //     _2 = _1;
27 //     _3 = _2;
28 //     _0 = Baz { x: _3, y: const 0f32, z: const false };
29 //     return;
30 // }
31 // END rustc.node13.Deaggregator.before.mir
32 // START rustc.node13.Deaggregator.after.mir
33 // bb0: {
34 //     _2 = _1;
35 //     _3 = _2;
36 //     (_0.0: usize) = _3;
37 //     (_0.1: f32) = const 0f32;
38 //     (_0.2: bool) = const false;
39 //     return;
40 // }
41 // END rustc.node13.Deaggregator.after.mir