Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
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
()
{}