Skip to content

Commit f7dd2d5

Browse files
committed
Add xfailed test case for issue 2611
1 parent 8945255 commit f7dd2d5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/test/run-pass/issue-2611.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// xfail-test
2+
import iter;
3+
import iter::base_iter;
4+
5+
impl Q<A> for base_iter<A> {
6+
fn flat_map_to_vec<B:copy, IB:base_iter<B>>(op: fn(B) -> IB) -> [B] {
7+
iter::flat_map_to_vec(self, op)
8+
}
9+
}
10+
11+
fn main() {}

0 commit comments

Comments
 (0)