mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-30 16:57:33 +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() { }
|