Add test for issue #53275

This commit is contained in:
Ryan Levick 2020-03-20 18:37:57 +01:00
parent f4c675c476
commit f1188f7afe

View File

@ -0,0 +1,8 @@
// run-pass
#![crate_type = "lib"]
struct S(u8);
pub fn ice() {
S([][0]);
}