mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
151 B
Rust
12 lines
151 B
Rust
// Check that array element types must be Sized. Issue #25692.
|
|
|
|
|
|
#![allow(dead_code)]
|
|
|
|
struct Foo {
|
|
foo: [[u8]], //~ ERROR E0277
|
|
}
|
|
|
|
|
|
fn main() { }
|