2021-10-01 23:03:28 +02:00
|
|
|
error: missing angle brackets in associated item path
|
|
|
|
--> $DIR/issue-89388.rs:5:24
|
|
|
|
|
|
|
|
|
LL | let _ = option.map([_]::to_vec);
|
2023-09-28 00:37:20 +00:00
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: types that don't start with an identifier need to be surrounded with angle brackets in qualified paths
|
|
|
|
|
|
|
|
|
LL | let _ = option.map(<[_]>::to_vec);
|
|
|
|
| + +
|
2021-10-01 23:03:28 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|