-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
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
Type inference regression affecting app_dirs on MacOS #48668
Comments
The failure is a call to
cc @rust-lang/libs -- any new |
Here is a minimized test case: use std::path::Component;
use std::ffi::OsStr;
fn main() {
let x: Box<OsStr> = Component::CurDir.as_ref().into();
} |
Tagging as |
Component implements |
Switching relevant team to T-libs as this is almost for sure a T-libs issue rather than a T-compiler issue |
Closing in favor of #48716. |
As seen in this Travis build,
app_dirs
currently builds on stable but not beta because of a type inference regression.The text was updated successfully, but these errors were encountered: