|
| 1 | +// Copyright 2014 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +// Test how resolving a projection interacts with inference. In this |
| 12 | +// case, we were eagerly unifying the type variable for the iterator |
| 13 | +// type with `I` from the where clause, ignoring the in-scope `impl` |
| 14 | +// for `ByRef`. The right answer was to consider the result ambiguous |
| 15 | +// until more type information was available. |
| 16 | + |
| 17 | +#![feature(associated_types, lang_items, unboxed_closures)] |
| 18 | +#![no_implicit_prelude] |
| 19 | + |
| 20 | +use std::option::Option::{None, Some, mod}; |
| 21 | + |
| 22 | +trait Iterator { |
| 23 | + type Item; |
| 24 | + |
| 25 | + fn next(&mut self) -> Option<Self::Item>; |
| 26 | +} |
| 27 | + |
| 28 | +trait IteratorExt: Iterator { |
| 29 | + fn by_ref(&mut self) -> ByRef<Self> { |
| 30 | + ByRef(self) |
| 31 | + } |
| 32 | +} |
| 33 | + |
| 34 | +impl<I> IteratorExt for I where I: Iterator {} |
| 35 | + |
| 36 | +struct ByRef<'a, I: 'a + Iterator>(&'a mut I); |
| 37 | + |
| 38 | +impl<'a, A, I> Iterator for ByRef<'a, I> where I: Iterator<Item=A> { |
| 39 | + type Item = A; |
| 40 | + |
| 41 | + fn next(&mut self) -> Option< <I as Iterator>::Item > { |
| 42 | + self.0.next() |
| 43 | + } |
| 44 | +} |
| 45 | + |
| 46 | +fn is_iterator_of<A, I: Iterator<Item=A>>(_: &I) {} |
| 47 | + |
| 48 | +fn test<A, I: Iterator<Item=A>>(mut it: I) { |
| 49 | + is_iterator_of::<A, _>(&it.by_ref()); |
| 50 | +} |
| 51 | + |
| 52 | +fn main() { } |
0 commit comments