Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
const-generics
/
defaults
/
default-on-impl.rs
blob: 9ce46aa09dee6fa6e8f0d82a759cc3ee5d847884 [
file
] [
log
] [
blame
] [
edit
]
struct
Foo
<
const
N
:
usize
>;
impl
<
const
N
:
usize
=
1
>
Foo
<
N
>
{}
//~^ ERROR defaults for const parameters are only allowed
fn
main
()
{}