Skip to content
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

Closed
huonw opened this issue Aug 30, 2014 · 3 comments
Closed

DST coercions do not work in slices #16864

huonw opened this issue Aug 30, 2014 · 3 comments
Labels
A-DSTs Area: Dynamically-sized types (DSTs)

Comments

@huonw
Copy link
Member

huonw commented Aug 30, 2014

fn main() {
    let x: &[uint] = &[1u];
    let _y = &[x, &[1, 2]];
}
<anon>:3:19: 3:26 error: mismatched types: expected `&[uint]`, found `&[uint, .. 2]` (expected vector, found vector)
<anon>:3     let _y = &[x, &[1, 2]];
                           ^~~~~~~

This may not be a bug, but it does mean that slices constructed like this need to have type annotations.

@steveklabnik
Copy link
Member

Triage: this is still true. Also not sure if it's a bug. @nikomatsakis ?

@eddyb
Copy link
Member

eddyb commented Jan 8, 2016

This is because we propagate the expected type downwards but not rightwards (from x to &[1, 2]).
We probably should do this by taking x's type after applying the outer expected type on it (and repeat this for any array element, so they can each add more information for the next one).

@Mark-Simulacrum
Copy link
Member

With the code updated, this no longer causes an error. Closing.

fn main() {
    let x: &[u32] = &[1u32];
    let _y = &[x, &[1, 2]];
}

bors added a commit to rust-lang-ci/rust that referenced this issue Mar 31, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-DSTs Area: Dynamically-sized types (DSTs)
Projects
None yet
Development

No branches or pull requests

4 participants