index
:
rustc
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
ui
/
consts
/
const-fn-destructuring-arg.rs
blob: ea5c9ddc7ced32bc11b54441c1a3d25a4553da78 (
plain
)
1
2
3
4
5
6
7
// check-pass
const
fn
i
((
a
,
b
)
:
(
u32
,
u32
))
->
u32
{
a
+
b
}
fn
main
()
{}