Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-39974.rs
blob: 9cb180014b86b7df60cbe621a84ecd27740ae779 [
file
] [
log
] [
blame
] [
edit
]
const
LENGTH
:
f64
=
2
;
//~^ ERROR mismatched types
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
]]
};
}