2012-09-05 17:36:11 -05:00
|
|
|
// Tests that an impl method's bounds aren't *more* restrictive
|
|
|
|
// than the trait method it's implementing
|
|
|
|
import iter;
|
|
|
|
import iter::BaseIter;
|
|
|
|
|
|
|
|
trait A {
|
2012-09-07 16:52:28 -05:00
|
|
|
fn b<C:Copy, D>(x: C) -> C;
|
2012-09-05 17:36:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct E {
|
2012-09-07 16:50:47 -05:00
|
|
|
f: int
|
2012-09-05 17:36:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl E: A {
|
2012-09-07 16:52:28 -05:00
|
|
|
fn b<F:Copy Const, G>(_x: F) -> F { fail } //~ ERROR in method `b`, type parameter 0 has 2 bounds, but
|
2012-09-05 17:36:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|