|
8 | 8 | // option. This file may not be copied, modified, or distributed
|
9 | 9 | // except according to those terms.
|
10 | 10 |
|
11 |
| -// xfail-test FIXME #2263 |
| 11 | +// does the second one subsume the first? |
| 12 | +// xfail-test |
12 | 13 | // xfail-fast
|
| 14 | + |
| 15 | +// notes on this test case: |
| 16 | +// On Thu, Apr 18, 2013 at 6:30 PM, John Clements <[email protected]> wrote: |
| 17 | +// the "issue-2185.rs" test was xfailed with a ref to #2263. Issue #2263 is now fixed, so I tried it again, and after adding some &self parameters, I got this error: |
| 18 | +// |
| 19 | +// Running /usr/local/bin/rustc: |
| 20 | +// issue-2185.rs:24:0: 26:1 error: conflicting implementations for a trait |
| 21 | +// issue-2185.rs:24 impl iterable<uint> for @fn(&fn(uint)) { |
| 22 | +// issue-2185.rs:25 fn iter(&self, blk: &fn(v: uint)) { self( |i| blk(i) ) } |
| 23 | +// issue-2185.rs:26 } |
| 24 | +// issue-2185.rs:20:0: 22:1 note: note conflicting implementation here |
| 25 | +// issue-2185.rs:20 impl<A> iterable<A> for @fn(&fn(A)) { |
| 26 | +// issue-2185.rs:21 fn iter(&self, blk: &fn(A)) { self(blk); } |
| 27 | +// issue-2185.rs:22 } |
| 28 | +// |
| 29 | +// … so it looks like it's just not possible to implement both the generic iterable<uint> and iterable<A> for the type iterable<uint>. Is it okay if I just remove this test? |
| 30 | +// |
| 31 | +// but Niko responded: |
| 32 | +// think it's fine to remove this test, just because it's old and cruft and not hard to reproduce. *However* it should eventually be possible to implement the same interface for the same type multiple times with different type parameters, it's just that our current trait implementation has accidental limitations. |
| 33 | + |
| 34 | +// so I'm leaving it in. |
| 35 | + |
13 | 36 | // This test had to do with an outdated version of the iterable trait.
|
14 | 37 | // However, the condition it was testing seemed complex enough to
|
15 | 38 | // warrant still having a test, so I inlined the old definitions.
|
16 | 39 |
|
17 | 40 | trait iterable<A> {
|
18 |
| - fn iter(blk: &fn(A)); |
| 41 | + fn iter(&self, blk: &fn(A)); |
19 | 42 | }
|
20 | 43 |
|
21 | 44 | impl<A> iterable<A> for @fn(&fn(A)) {
|
22 |
| - fn iter(blk: &fn(A)) { self(blk); } |
| 45 | + fn iter(&self, blk: &fn(A)) { self(blk); } |
23 | 46 | }
|
24 | 47 |
|
25 | 48 | impl iterable<uint> for @fn(&fn(uint)) {
|
26 |
| - fn iter(blk: &fn(&&v: uint)) { self( |i| blk(i) ) } |
| 49 | + fn iter(&self, blk: &fn(v: uint)) { self( |i| blk(i) ) } |
27 | 50 | }
|
28 | 51 |
|
29 | 52 | fn filter<A,IA:iterable<A>>(self: IA, prd: @fn(A) -> bool, blk: &fn(A)) {
|
|
0 commit comments