Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
const-generics
/
generic_const_exprs
/
auxiliary
/
cross-crate-2.rs
blob: a8bda14f4bd816d297fc7343cccfdc56c0686db7 [
file
] [
log
] [
blame
]
#![
allow
(
incomplete_features
)]
#![
feature
(
generic_const_exprs
)]
pub
struct
Foo
<
const
N
:
usize
>;
impl
<
const
N
:
usize
>
Foo
<
N
>
where
[
u8
;
N
.
div_ceil
(
8
)]:
Sized
,
{
pub
fn
new
()
->
Self
{
todo
!()
}
}