summaryrefslogtreecommitdiffstats
path: root/src/test/mir-opt/deaggregator_test.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mir-opt/deaggregator_test.rs')
-rw-r--r--src/test/mir-opt/deaggregator_test.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/mir-opt/deaggregator_test.rs b/src/test/mir-opt/deaggregator_test.rs
new file mode 100644
index 000000000..342e22243
--- /dev/null
+++ b/src/test/mir-opt/deaggregator_test.rs
@@ -0,0 +1,15 @@
+struct Baz {
+ x: usize,
+ y: f32,
+ z: bool,
+}
+
+// EMIT_MIR deaggregator_test.bar.Deaggregator.diff
+fn bar(a: usize) -> Baz {
+ Baz { x: a, y: 0.0, z: false }
+}
+
+fn main() {
+ // Make sure the function actually gets instantiated.
+ bar(0);
+}