mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
18 lines
325 B
Rust
18 lines
325 B
Rust
//@ build-pass
|
|
|
|
pub const fn f<T, const N: usize>(_: [std::mem::MaybeUninit<T>; N]) {}
|
|
|
|
pub struct Blubb<T>(*const T);
|
|
|
|
pub const fn g<T, const N: usize>(_: [Blubb<T>; N]) {}
|
|
|
|
pub struct Blorb<const N: usize>([String; N]);
|
|
|
|
pub const fn h(_: Blorb<0>) {}
|
|
|
|
pub struct Wrap(Blorb<0>);
|
|
|
|
pub const fn i(_: Wrap) {}
|
|
|
|
fn main() {}
|