Skip to content

Access to fields of associated types not normalized #20954

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

Closed
nikomatsakis opened this issue Jan 11, 2015 · 0 comments · Fixed by #20955
Closed

Access to fields of associated types not normalized #20954

nikomatsakis opened this issue Jan 11, 2015 · 0 comments · Fixed by #20955
Labels
A-associated-items Area: Associated items (types, constants & functions)

Comments

@nikomatsakis
Copy link
Contributor

e.g. this program does not compile:

// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Test that we correctly normalize the type of a struct field
// which has an associated type.

pub trait UnifyKey {
    type Value;
}

pub struct Node<K:UnifyKey> {
    pub key: K,
    pub value: K::Value,
}

fn foo<K : UnifyKey<Value=Option<V>>,V : Clone>(node: &Node<K>) -> Option<V> {
    node.value.clone()
}

impl UnifyKey for i32 {
    type Value = Option<u32>;
}

impl UnifyKey for u32 {
    type Value = Option<i32>;
}

pub fn main() {
    let node: Node<i32> = Node { key: 1, value: Some(22) };
    assert_eq!(foo(&node), Some(22_u32));

    let node: Node<u32> = Node { key: 1, value: Some(22) };
    assert_eq!(foo(&node), Some(22_i32));
}
@nikomatsakis nikomatsakis added I-wrong A-associated-items Area: Associated items (types, constants & functions) labels Jan 11, 2015
nikomatsakis added a commit to nikomatsakis/rust that referenced this issue Jan 11, 2015
bors added a commit that referenced this issue Jan 13, 2015
…ess, r=nick29581

Normalize the types of fields we project out of a struct or tuple struct.
Fixes #20954.

r? @nick29581
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-associated-items Area: Associated items (types, constants & functions)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant