Sign in
fuchsia
/
third_party
/
rust
/
eda6dc928323fcd0ac1b51cea1aa79ab17e8519d
/
.
/
tests
/
ui
/
const-generics
/
const-param-after-const-literal-arg.rs
blob: 9caeb4856951da11b6715f43258650f70f6d7054 [
file
] [
log
] [
blame
]
//@ check-pass
struct
Foo
<
const
A
:
usize
,
const
B
:
usize
>;
impl
<
const
A
:
usize
>
Foo
<
1
,
A
>
{}
// ok
fn
main
()
{}