You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0618]: expected function, found struct `SpecificDuck`
--> examples/01-waiter-di.rs:11:8
|
10 | #[component]
| ------------ call expression requires function
11 | struct SpecificDuck;
| -------^^^^^^^^^^^^
| |
| struct `SpecificDuck` defined here
|
help: `SpecificDuck` is a unit struct, and does not take parentheses to be constructed
|
10 - #[component]
10 + #[component]
The text was updated successfully, but these errors were encountered:
this works:
this does not work:
the error is:
The text was updated successfully, but these errors were encountered: