Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
const-generics
/
vec-macro-in-static-array.rs
blob: 7a81836e2556b0454cc76bbf046b61a2894498d4 [
file
] [
log
] [
blame
]
//! Regression test for https://github.com/rust-lang/rust/issues/13446
// Used to cause ICE
static
VEC
:
[
u32
;
256
]
=
vec
![];
//~^ ERROR mismatched types
fn
main
()
{}