]> git.lizzy.rs Git - rust.git/blob - tests/ui/wf/wf-array-elem-sized.rs
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / wf / wf-array-elem-sized.rs
1 // Check that array element types must be Sized. Issue #25692.
2
3
4 #![allow(dead_code)]
5
6 struct Foo {
7     foo: [[u8]], //~ ERROR E0277
8 }
9
10
11 fn main() { }