blob: f06afc8ba4144020499cd4fe5d160e257cd3b857 [file] [log] [blame]
// run-pass
#![feature(specialization)] //~ WARN the feature `specialization` is incomplete
trait Iterator {
fn next(&self);
}
trait WithAssoc {
type Item;
}
impl<'a> WithAssoc for &'a () {
type Item = &'a u32;
}
struct Cloned<I>(#[allow(dead_code)] I);
impl<'a, I, T: 'a> Iterator for Cloned<I>
where I: WithAssoc<Item=&'a T>, T: Clone
{
fn next(&self) {}
}
impl<'a, I, T: 'a> Iterator for Cloned<I>
where I: WithAssoc<Item=&'a T>, T: Copy
{
}
fn main() {
Cloned(&()).next();
}