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