mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
154 B
Rust
12 lines
154 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() {}
|