Skip to content

Commit 1d3de19

Browse files
committed
Add tests related to #20220. Fixes #20220.
1 parent cd50b4e commit 1d3de19

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright 2015 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 case where an associated type is referenced from within the
12+
// supertrait definition, and the impl makes the wrong
13+
// associations. Issue #20220.
14+
15+
use std::vec::IntoIter;
16+
17+
pub trait Foo: Iterator<Item=<Self as Foo>::Key> {
18+
type Key;
19+
}
20+
21+
impl Foo for IntoIter<i32> { //~ ERROR type mismatch
22+
type Key = u32;
23+
}
24+
25+
fn main() {
26+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Copyright 2015 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 case where an associated type is referenced from within the
12+
// supertrait definition. Issue #20220.
13+
14+
use std::vec::IntoIter;
15+
16+
pub trait Foo: Iterator<Item=<Self as Foo>::Key> {
17+
type Key;
18+
}
19+
20+
impl Foo for IntoIter<i32> {
21+
type Key = i32;
22+
}
23+
24+
fn sum_foo<F:Foo<Key=i32>>(f: F) -> i32 {
25+
f.fold(0, |a,b| a + b)
26+
}
27+
28+
fn main() {
29+
let x = sum_foo(vec![11, 10, 1].into_iter());
30+
assert_eq!(x, 22);
31+
}

0 commit comments

Comments
 (0)