Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upTests are not building #77
Closed
Comments
|
Until this is figured out, I'll be disabling the tests over in #78 |
|
So far I have narrowed it down to the following code does not compile: #[derive(Deserialize)]
struct Message<'a>(RefBox<'a, ()>);Now I will start looking at the generated code to find the problem. |
|
This failure was correct on Serde's part and a bug in bincode. The code was trying to derive Deserialize for a type containing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Trying to run tests with nightly
rustc 1.11.0-nightly (bb4a79b08 2016-06-15).As far as I can tell this error points
RefBox's lifetimes.