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
cargo doc --all --release --no-deps error[E0282]: type annotations needed --> imageflow_core/src/codecs/mod.rs:106:68 | 106 | fn create(c: &Context, io: IoProxy, io_id: i32) -> Result<Box<impl Decoder>> { | ^^^^^^^^^^^^ cannot infer type for `_`
rustc -V rustc 1.22.0-nightly (0701b37 2017-09-18)
The text was updated successfully, but these errors were encountered:
Similar cause as #43869.
Repro case for rustc:
rustc
#![feature(conservative_impl_trait)] fn foo() -> Box<impl Clone> { //~ ERROR E0283 loop {} } fn main() { }
Sorry, something went wrong.
Fix issue rust-lang#44731.
16c110f
Also excludes `impl Trait` from everybody_loops if it appears in the path.
impl Trait
Auto merge of #44860 - kennytm:fix-44731, r=alexcrichton
d2f71bf
Fix issue #44731. Also excludes `impl Trait` from everybody_loops if it appears in the path. Fixes #44731.
Expr
DefId
ReplaceBodyWithLoop
No branches or pull requests
rustc -V
rustc 1.22.0-nightly (0701b37 2017-09-18)
The text was updated successfully, but these errors were encountered: