Explain the reason for why a test exists

This commit is contained in:
Oli Scherer 2023-05-31 13:57:55 +00:00
parent 81b07edde8
commit 3c02cfc3e7

View File

@ -2,6 +2,8 @@
#![feature(inline_const)]
// Test that we don't generate a memory allocation for the constant
// and read the fields from that, but instead just create the value pair directly.
pub fn foo() -> (i32, i32) {
// CHECK: ret { i32, i32 } { i32 1, i32 2 }
const { (1, 2) }