Sign in
android
/
toolchain
/
rustc
/
bcf972c0208490b0eb3ce3c170c2db486ba945b3
/
.
/
src
/
test
/
ui
/
const-generics
/
infer
/
cannot-infer-const-args.rs
blob: f85a72910aff151b769aafbc5eb42d5dfaec2955 [
file
] [
log
] [
blame
]
fn
foo
<
const
X
:
usize
>()
->
usize
{
0
}
fn
main
()
{
foo
();
//~ ERROR type annotations needed
}