mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
12 lines
155 B
Rust
12 lines
155 B
Rust
// Regression test for #82792.
|
|
|
|
//@ run-pass
|
|
|
|
#[repr(C)]
|
|
pub struct Loaf<T: Sized, const N: usize = 1> {
|
|
head: [T; N],
|
|
slice: [T],
|
|
}
|
|
|
|
fn main() {}
|