rust/src/test/ui/wf/wf-array-elem-sized.rs
2018-12-25 21:08:33 -07:00

12 lines
150 B
Rust

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