mirror of
https://github.com/Noratrieb/accursed-unutterable-type-id.git
synced 2026-01-14 16:45:00 +01:00
11 lines
201 B
Rust
11 lines
201 B
Rust
use accursed_unutterable_type_id::AccursedUnutterablyTypeIdentified;
|
|
|
|
#[derive(AccursedUnutterablyTypeIdentified)]
|
|
struct Uwu<T, const N: usize>
|
|
where
|
|
T: 'static,
|
|
{
|
|
_x: [T; N],
|
|
}
|
|
|
|
fn main() {}
|