blob: 41c2d3c43e9755876479b64a91dc5116781eebdb [file] [log] [blame]
// Check that array elemen types must be Sized. Issue #25692.
#![allow(dead_code)]
struct Foo {
foo: [[u8]], //~ ERROR E0277
}
fn main() { }