mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
9 lines
210 B
Rust
9 lines
210 B
Rust
// 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 }
|
|
const { (1, 2) }
|
|
}
|