about summary refs log tree commit diff
path: root/src/test/ui/wf/wf-array-elem-sized.rs
blob: 41c2d3c43e9755876479b64a91dc5116781eebdb (plain)
1
2
3
4
5
6
7
8
9
10
11
// Check that array elemen types must be Sized. Issue #25692.


#![allow(dead_code)]

struct Foo {
    foo: [[u8]], //~ ERROR E0277
}


fn main() { }