Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
const-generics
/
generic_const_exprs
/
issue-90847.rs
blob: ebc6fe1412320cc1c775ac625bb44967f8cd019b [
file
] [
log
] [
blame
]
// check-pass
#![
allow
(
incomplete_features
)]
#![
feature
(
generic_const_exprs
)]
#![
feature
(
adt_const_params
)]
struct
Foo
<
const
A
:
[();
0
+
0
]>
where
[();
0
+
0
]:
Sized
;
fn
main
()
{}