rust/tests/codegen/const_scalar_pair.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
210 B
Rust
Raw Normal View History

2023-05-26 14:53:24 +00:00
// compile-flags: --crate-type=lib -Copt-level=0 -Zmir-opt-level=0 -C debuginfo=2
#![feature(inline_const)]
pub fn foo() -> (i32, i32) {
// CHECK: ret { i32, i32 } { i32 1, i32 2 }
2023-05-26 14:53:24 +00:00
const { (1, 2) }
}