mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-01 13:34:38 +00:00
14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
error: function parameters require top-level or-patterns in parentheses
|
|
--> $DIR/fn-param-wrap-parens.rs:13:9
|
|
|
|
|
LL | fn fun1(A | B: E) {}
|
|
| ^^^^^
|
|
|
|
|
help: wrap the pattern in parentheses
|
|
|
|
|
LL | fn fun1((A | B): E) {}
|
|
| + +
|
|
|
|
error: aborting due to 1 previous error
|
|
|