mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +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
|
|
}
|