Skip to content

Commit

Permalink
Add 84408
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Apr 23, 2021
1 parent 9789c8a commit 0615aeb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions ices/84408.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#![feature(const_generics, const_evaluatable_checked)]
#![allow(incomplete_features)]

trait Melon<const X: usize> {
fn new(arr: [i32; X]) -> Self;
fn change<T: Melon<X>>(self) -> T;
}

struct Foo([i32; 5]);
struct Bar<const A: usize, const B: usize>([i32; A + B])
where [(); A + B]: ;

impl Melon<5> for Foo {
fn new(arr: [i32; 5]) -> Self {
Foo(arr)
}
fn change<T: Melon<5>>(self) -> T {
T::new(self.0)
}
}

impl<const A: usize, const B: usize> Melon<{A + B}> for Bar<A, B>
where [(); A + B]: ,
{
fn new(arr: [i32; A + B]) -> Self {
Bar(arr)
}
fn change<T: Melon<{A + B}>>(self) -> T {
T::new(self.0)
}
}

0 comments on commit 0615aeb

Please sign in to comment.