Skip to content

Commit

Permalink
Add 83938
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Apr 9, 2021
1 parent 14ea5e7 commit 613cde5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ices/83938.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#![crate_type = "lib"]
#![feature(const_generics_defaults)]

type NpOne<T, const N: usize, const NP: usize = {N+1usize}> = [T; NP];

pub fn push<T, const N: usize>(_: [T; N], _: T)
-> NpOne<T, N>
{
todo!()
}

0 comments on commit 613cde5

Please sign in to comment.