You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This appears to be a long-standing issue with blocks, recently exposed in match by #19769.
Original error by @steveklabnik (source code):
<std macros>:3:22:3:40 error: mismatched types: expected `error::Error`, found `collections::string::String` (expected trait error::Error, found struct collections::string::String)
<std macros>:3format_args!(::std::fmt::format, $($arg)*)
^~~~~~~~~~~~~~~~~~
note:in expansion of format_args!
<std macros>:3:9:3:51 note: expansion site
<std macros>:1:1:5:2 note:in expansion of format!
src/build.rs:113:36:116:34 note: expansion site
src/build.rs:113:32:116:45 error: the trait `core::kinds::Sized` is not implemented for the type `error::Error`
src/build.rs:113 return Err(box format!("{}\n{}",
src/build.rs:114String::from_utf8_lossy(output.output[]),
src/build.rs:115String::from_utf8_lossy(output.error[]))
src/build.rs:116asBox<Error>);
src/build.rs:113:32:116:45 note: only sized types can be made into objects
src/build.rs:113 return Err(box format!("{}\n{}",
src/build.rs:114String::from_utf8_lossy(output.output[]),
src/build.rs:115String::from_utf8_lossy(output.error[]))
src/build.rs:116asBox<Error>);
src/build.rs:113:32:116:45 error: the trait `error::Error` is not implemented for the type `error::Error`
src/build.rs:113 return Err(box format!("{}\n{}",
src/build.rs:114String::from_utf8_lossy(output.output[]),
src/build.rs:115String::from_utf8_lossy(output.error[]))
src/build.rs:116asBox<Error>);
src/build.rs:113:32:116:45 note: required for the cast to the object type `error::Error`
src/build.rs:113 return Err(box format!("{}\n{}",
src/build.rs:114String::from_utf8_lossy(output.output[]),
src/build.rs:115String::from_utf8_lossy(output.error[]))
src/build.rs:116asBox<Error>);
<std macros>:3:22:3:40 error: mismatched types: expected `error::Error`, found `collections::string::String` (expected trait error::Error, found struct collections::string::String)
<std macros>:3format_args!(::std::fmt::format, $($arg)*)
^~~~~~~~~~~~~~~~~~
note:in expansion of format_args!
<std macros>:3:9:3:51 note: expansion site
<std macros>:1:1:5:2 note:in expansion of format!
src/build.rs:120:32:120:80 note: expansion site
src/build.rs:120:28:120:91 error: the trait `core::kinds::Sized` is not implemented for the type `error::Error`
src/build.rs:120 return Err(box format!("Could not execute `rustdoc`: {}", e)asBox<Error>);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/build.rs:120:28:120:91 note: only sized types can be made into objects
src/build.rs:120 return Err(box format!("Could not execute `rustdoc`: {}", e)asBox<Error>);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/build.rs:120:28:120:91 error: the trait `error::Error` is not implemented for the type `error::Error`
src/build.rs:120 return Err(box format!("Could not execute `rustdoc`: {}", e)asBox<Error>);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/build.rs:120:28:120:91 note: required for the cast to the object type `error::Error`
src/build.rs:120 return Err(box format!("Could not execute `rustdoc`: {}", e)asBox<Error>);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
My own format_args experiments (#20136) were hit by this:
This appears to be a long-standing issue with blocks, recently exposed in
match
by #19769.Original error by @steveklabnik (source code):
My own
format_args
experiments (#20136) were hit by this:The text was updated successfully, but these errors were encountered: