Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-31267.rs
blob: d6081bb87439f96951bc2e0a41cdb5b9f11c5c30 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Regression test for issue #31267
struct
Foo
;
impl
Foo
{
const
FOO
:
[
i32
;
3
]
=
[
0
;
3
];
}
pub
fn
main
()
{
let
foo
=
Foo
::
FOO
;
assert_eq
!(
foo
,
[
0i32
,
0
,
0
]);
}