Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
const-generics
/
generic_const_exprs
/
drop_impl.rs
blob: 077f77aa0f4042130f9af26942129867c619a436 [
file
]
//check-pass
#![
feature
(
generic_const_exprs
)]
#![
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
()
{}