-
-
Notifications
You must be signed in to change notification settings - Fork 326
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
Implement Clone, Copy and Debug on possible structs and enums #715
base: master
Are you sure you want to change the base?
Conversation
There's a block of code that is not compliant with rustfmt, so let's restore it for now and maybe deal with it in another PR
Btw, I'm unable to run the tests on my machine for some reason. Even with a fresh unmodified clone of test coroutine_execution_order ... ok
double free or corruption (out)
error: test failed, to rerun pass `--test coroutine_pause` The errors seems to be inconsistent between runs, so I'm guessing that there's a race condition somewhere. Could you run it on your side if possible? |
Random aside here but this specific test seems to be exploding for me as well, likely everyone right now |
Documented here: #693 |
I was really annoyed with getting blocked by some structs not implementing
Clone
/Copy
/Debug
so I tried to implement them in as many places as possible (sorry for the fat diff).