mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
12 lines
175 B
Rust
12 lines
175 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
fn main() {}
|
|
|
|
const fn tup((a, b): (i32, i32)) -> i32 {
|
|
a + b
|
|
}
|
|
|
|
const fn array([a, b]: [i32; 2]) -> i32 {
|
|
a + b
|
|
}
|