-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
DST coercions do not work in slices #16864
Comments
Triage: this is still true. Also not sure if it's a bug. @nikomatsakis ? |
This is because we propagate the expected type downwards but not rightwards (from |
With the code updated, this no longer causes an error. Closing. fn main() {
let x: &[u32] = &[1u32];
let _y = &[x, &[1, 2]];
} |
internal: Sync from downstream
This may not be a bug, but it does mean that slices constructed like this need to have type annotations.
The text was updated successfully, but these errors were encountered: