You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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.pubtraitUnifyKey{typeValue;}pubstructNode<K:UnifyKey>{pubkey:K,pubvalue:K::Value,}fnfoo<K:UnifyKey<Value=Option<V>>,V:Clone>(node:&Node<K>) -> Option<V>{
node.value.clone()}implUnifyKeyfori32{typeValue = Option<u32>;}implUnifyKeyforu32{typeValue = Option<i32>;}pubfnmain(){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));}
The text was updated successfully, but these errors were encountered:
e.g. this program does not compile:
The text was updated successfully, but these errors were encountered: