2018-07-15 16:11:54 -05:00
|
|
|
error: expected type, found `0`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-39616.rs:1:12
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | fn foo(a: [0; 1]) {} //~ ERROR expected type, found `0`
|
|
|
|
| ^
|
|
|
|
|
|
|
|
error: expected one of `)`, `,`, `->`, `where`, or `{`, found `]`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-39616.rs:1:16
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | fn foo(a: [0; 1]) {} //~ ERROR expected type, found `0`
|
|
|
|
| ^ expected one of `)`, `,`, `->`, `where`, or `{` here
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|