1 // Copyright (C) 2016 Free Software Foundation, Inc.
3 // This program is free software; you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation; either version 3 of the License, or
6 // (at your option) any later version.
8 // This program is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 // GNU General Public License for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #![allow(unused_variables)]
18 #![allow(unused_assignments)]
26 struct ByeBob(i32, u64);
34 enum MoreComplicated {
38 Four{this: bool, is: u8, a: char, struct_: u64, variant: u32},
41 // tests the nonzero optimization, but fields are reversed
42 enum NonZeroOptimized {
47 fn diff2(x: i32, y: i32) -> i32 {
51 // Empty function, should not have "void"
52 // or "()" in its return type
59 // This triggers the non-zero optimization that yields a different
60 // enum representation in the debug info.
68 let b : [i32; 0] = [];
73 let e = MoreComplicated::Two(73);
74 let e2 = MoreComplicated::Four {this: true, is: 8, a: 'm',
75 struct_: 100, variant: 10};
81 let i = ["whatever"; 8];
85 let k = SpaceSaver::Nothing;
86 let l = SpaceSaver::Thebox(9, Box::new(1729));
88 let v = Something::Three;
91 let y = HiBob {field1: 7, field2: 8};
95 let fromslice = slice[0];
96 let slice2 = &slice[0..1];
99 let all2 = &slice[..];
102 let from2 = &slice[1..];
105 let to2 = &slice[..1];
107 // tests for enum optimizations
109 let str_some = Some("hi".to_string());
110 let str_none = None::<String>;
111 let box_some = Some(Box::new(1u8));
112 let box_none = None::<Box<u8>>;
113 let int_some = Some(1u8);
114 let int_none = None::<u8>;
115 let custom_some = NonZeroOptimized::Value("hi".into());
116 let custom_none = NonZeroOptimized::Empty;
118 println!("{}, {}", x.0, x.1); // set breakpoint here
119 println!("{}", diff2(92, 45));