mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
8 lines
82 B
Rust
8 lines
82 B
Rust
//@ check-pass
|
|
|
|
const fn i((a, b): (u32, u32)) -> u32 {
|
|
a + b
|
|
}
|
|
|
|
fn main() {}
|