2021-08-04 12:30:41 -05:00
|
|
|
//check-pass
|
2021-08-27 11:04:57 -05:00
|
|
|
#![feature(generic_const_exprs)]
|
2021-08-04 12:30:41 -05:00
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
|
|
struct Foo<const N: usize>
|
|
|
|
where
|
|
|
|
[(); N + 1]: ;
|
|
|
|
|
|
|
|
impl<const N: usize> Drop for Foo<N>
|
|
|
|
where
|
|
|
|
[(); N + 1]: ,
|
|
|
|
{
|
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|