mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
8 lines
81 B
Rust
8 lines
81 B
Rust
// check-pass
|
|
|
|
const fn i((a, b): (u32, u32)) -> u32 {
|
|
a + b
|
|
}
|
|
|
|
fn main() {}
|