2021-02-12 18:04:37 -06:00
|
|
|
error: top-level or-patterns are not allowed in function parameters
|
2020-11-21 16:05:17 -06:00
|
|
|
--> $DIR/fn-param-wrap-parens.rs:13:9
|
2019-08-25 05:45:51 +02:00
|
|
|
|
|
|
|
|
LL | fn fun1(A | B: E) {}
|
2024-07-06 03:07:46 +00:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
help: wrap the pattern in parentheses
|
|
|
|
|
|
|
|
|
LL | fn fun1((A | B): E) {}
|
|
|
|
| + +
|
2019-08-25 05:45:51 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-08-25 05:45:51 +02:00
|
|
|
|