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
This is a bug that should be fixed. It is still a bug in 1.3.0. The problem is that your enum Signal contains the unsized variants TRAN(Fn(&mut Data, &Event) -> &'a Signal<'a>). Unsized variants currently cause an ICE, but are probably not what you want (I imagine you instead want Box<Fn(&mut Data, &Event) -> &'a Signal<'a>>, and the same for State).
Summary of the bug is in the title
I tried with this code :
I expected rustc would have kept yelling at me about errors in my code :)
Instead, I get the following output
Metadata
The text was updated successfully, but these errors were encountered: