Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
const-generics
/
min_const_generics
/
const_default_first.rs
blob: eafafb8a27455a55765cbd818e58ac710f5c7314 [
file
] [
log
] [
blame
]
#![
crate_type
=
"lib"
]
#![
allow
(
dead_code
)]
struct
Both
<
const
N
:
usize
=
3
,
T
>
{
//~^ ERROR: generic parameters with a default must be
v
:
T
}