Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
consts
/
issue-39974.rs
blob: 503647ef4a82f16fc7a04a7dcb39608c0f410019 [
file
] [
log
] [
blame
]
const
LENGTH
:
f64
=
2
;
struct
Thing
{
f
:
[[
f64
;
2
];
LENGTH
],
//~^ ERROR mismatched types
//~| expected `usize`, found `f64`
}
fn
main
()
{
let
_t
=
Thing
{
f
:
[[
0.0
,
0.0
],
[
0.0
,
0.0
],
[
0.0
,
0.0
],
[
0.0
,
0.0
]]
};
}