We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried this code:
struct Foo; impl<'de> serde::Deserialize<'de> for Foo { fn deserialize<D: serde::Deserializer<'de>>(_: D) -> Result<Self, D::Error> { extern crate serde as _serde; struct Bar; impl<'de> _serde::Deserialize<'de> for Bar {} } } fn main() {}
I expected to see this happen:
An error message about how required functions are missing (but this is reduced from a program that should have compiled).
Instead, this happened:
thread 'rustc' has overflowed its stack fatal runtime error: stack overflow
rustc --version --verbose:
rustc --version --verbose
rustc 1.44.0-nightly (7f3df5772 2020-04-16) binary: rustc commit-hash: 7f3df5772439eee1c512ed2eb540beef1124d236 commit-date: 2020-04-16 host: x86_64-unknown-linux-gnu release: 1.44.0-nightly LLVM version: 9.0
Backtrace: https://gist.github.com/tadeokondrak/2020c314ad4e1af21ae21e83351e1cb8
The text was updated successfully, but these errors were encountered:
Whoops, duplicate of #55779. I was searching for a different function name at first which didn't show anything.
Sorry, something went wrong.
No branches or pull requests
I tried this code:
I expected to see this happen:
An error message about how required functions are missing (but this is reduced from a program that should have compiled).
Instead, this happened:
Meta
rustc --version --verbose
:Backtrace: https://gist.github.com/tadeokondrak/2020c314ad4e1af21ae21e83351e1cb8
The text was updated successfully, but these errors were encountered: