Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
const-generics
/
incorrect-number-of-const-args.rs
blob: de2d126afd75a1bc9e057ff68cf465a207870fdf [
file
] [
log
] [
blame
]
fn
foo
<
const
X
:
usize
,
const
Y
:
usize
>()
->
usize
{
0
}
fn
main
()
{
foo
::<
0
>();
//~^ ERROR this function takes 2
foo
::<
0
,
0
,
0
>();
//~^ ERROR this function takes 2
}