-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fail to #[derive(ActionLike)] on minimal enum #404
Comments
Hmm, that's really interesting. I'll try swapping directly to a |
Can you test this out on the latest commit of #400 ? I've swapped to a Reflect bound there. |
972978f still fails to build but this time because of
I tried bisecting bevy but something is really weird: It does build with bevy |
Might be conflicting versions of the Reflect trait? Check if you have multiple copies of Bevy in tree with |
Oooh right: lwim depends on bevy
So I need to explicitly depend on two versions of bevy if I want to keep using both main branches. Sorry for the confusion ! |
No worries, thanks for investigating! |
Version
lwim: fc3e348
bevy: a830530b
(both latest
main
at the time of writing)Operating system & version
Linux 6.1.57 NixOS SMP PREEMPT_DYNAMIC x86_64 GNU/Linux
What you did
Make a simple action enum from the minimal example:
then build it with
cargo build --lib
.What you expected to happen
Build succeeds.
What actually happened
Additional information
rustc --version
:rustc 1.73.0 (cc66ad468 2023-10-03)
(stable)This might be related to bevy #10228 (and thus be an upstream bug), but my suspicion only comes from the identical error message.
The text was updated successfully, but these errors were encountered: