15 lines
431 B
Plaintext
15 lines
431 B
Plaintext
|
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
|
||
|
|