error[E0282]: type annotations needed
--> src/main.rs:27:44
|
27 | let args: Box<_> = env::args().skip(1).collect();
| ^^^^^^^ cannot infer type of the type parameter `B` declared on the method `collect`
28 | for arg in args.iter() {
| ---- type must be known at this point
|
help: consider specifying the generic argument
|
27 | let args: Box<_> = env::args().skip(1).collect::<Vec<_>>();
| ++++++++++
For more information about this error, try `rustc --explain E0282`.
seeing some time related failure
relates to https://github.com/Homebrew/homebrew-core/pull/178436