Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
rustdoc
/
document-item-with-associated-const-in-where-clause.rs
blob: c9408ef3360b420de00d3aeb814db1de0433543c [
file
] [
log
] [
blame
]
#![
feature
(
generic_const_exprs
)]
#![
allow
(
incomplete_features
)]
pub
trait
Enumerable
{
const
N
:
usize
;
}
#[
derive
(
Clone
)]
pub
struct
SymmetricGroup
<
S
>
where
S
:
Enumerable
,
[();
S
::
N
]:
Sized
,
{
_phantom
:
std
::
marker
::
PhantomData
<
S
>,
}
fn
main
()
{}