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
/
borrowck
/
borrowck-fixed-length-vecs.rs
blob: 126323d8d242bebf6eed84c5b478f66622e70012 (
plain
)
1
2
3
4
5
6
7
// run-pass
pub
fn
main
()
{
let
x
=
[
22
];
let
y
=
&
x
[
0
];
assert_eq!
(
*
y
,
22
);
}