2025-07-24 17:22:54 +05:00
|
|
|
//! Regression test for https://github.com/rust-lang/rust/issues/13446
|
|
|
|
|
|
2014-06-09 07:44:49 +02:00
|
|
|
// Used to cause ICE
|
|
|
|
|
|
2016-10-29 22:54:04 +01:00
|
|
|
static VEC: [u32; 256] = vec![];
|
2018-07-19 14:15:43 +02:00
|
|
|
//~^ ERROR mismatched types
|
2014-06-09 07:44:49 +02:00
|
|
|
|
|
|
|
|
fn main() {}
|