2023-07-13 16:32:36 -07:00
|
|
|
error: expected parameter name, found `,`
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/issue-110892.rs:25:9
|
2023-07-13 16:32:36 -07:00
|
|
|
|
|
|
|
|
LL | ,
|
|
|
|
| ^ expected parameter name
|
|
|
|
|
|
|
|
error: expected parameter name, found `,`
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/issue-110892.rs:26:9
|
2023-07-13 16:32:36 -07:00
|
|
|
|
|
|
|
|
LL | ,
|
|
|
|
| ^ expected parameter name
|
|
|
|
|
|
|
|
error: expected parameter name, found `,`
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/issue-110892.rs:27:9
|
2023-07-13 16:32:36 -07:00
|
|
|
|
|
|
|
|
LL | ,
|
|
|
|
| ^ expected parameter name
|
|
|
|
|
|
|
|
error: expected parameter name, found `,`
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/issue-110892.rs:28:9
|
2023-07-13 16:32:36 -07:00
|
|
|
|
|
|
|
|
LL | ,
|
|
|
|
| ^ expected parameter name
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2024-02-26 16:49:25 +00:00
|
|
|
--> $DIR/issue-110892.rs:29:10
|
2023-07-13 16:32:36 -07:00
|
|
|
|
|
|
|
|
LL | const fn from_options(
|
|
|
|
| ------------ implicitly returns `()` as its body has no tail or `return` expression
|
|
|
|
...
|
|
|
|
LL | ) -> Assume {}
|
|
|
|
| ^^^^^^ expected `Assume`, found `()`
|
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|