blob: fa59060629ddf55a6be47e59a76fc35182be5f07 [file] [log] [blame]
// run-pass
// Test that we correctly normalize the type of a struct field
// which has an associated type.
pub trait UnifyKey {
type Value;
fn dummy(&self) { }
}
pub struct Node<K:UnifyKey>(K, K::Value);
fn foo<K : UnifyKey<Value=Option<V>>,V : Clone>(node: &Node<K>) -> Option<V> {
node.1.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(1, Some(22));
assert_eq!(foo(&node), Some(22));
let node: Node<u32> = Node(1, Some(22));
assert_eq!(foo(&node), Some(22));
}