blob: eebf47afb54c4a0ae51dafad9f10f646367fa401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: expected type, found `0`
--> $DIR/issue-39616.rs:11:12
|
LL | fn foo(a: [0; 1]) {} //~ ERROR expected type, found `0`
| ^
error: expected one of `)`, `,`, `->`, `where`, or `{`, found `]`
--> $DIR/issue-39616.rs:11:16
|
LL | fn foo(a: [0; 1]) {} //~ ERROR expected type, found `0`
| ^ expected one of `)`, `,`, `->`, `where`, or `{` here
error: aborting due to 2 previous errors
|