2014-07-02 04:59:16 +00:00
|
|
|
//
|
|
|
|
// Make sure rustc checks the type parameter bounds in implementations of traits,
|
|
|
|
// see #2687
|
|
|
|
|
2015-02-12 15:29:52 +00:00
|
|
|
use std::marker;
|
|
|
|
|
2015-03-31 23:58:01 +00:00
|
|
|
trait A { }
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
trait B: A {}
|
|
|
|
|
|
|
|
trait C: A {}
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
fn test_error1_fn<T: Eq>(&self);
|
|
|
|
fn test_error2_fn<T: Eq + Ord>(&self);
|
|
|
|
fn test_error3_fn<T: Eq + Ord>(&self);
|
|
|
|
fn test3_fn<T: Eq + Ord>(&self);
|
|
|
|
fn test4_fn<T: Eq + Ord>(&self);
|
|
|
|
fn test_error5_fn<T: A>(&self);
|
|
|
|
fn test6_fn<T: A + Eq>(&self);
|
|
|
|
fn test_error7_fn<T: A>(&self);
|
|
|
|
fn test_error8_fn<T: B>(&self);
|
|
|
|
}
|
|
|
|
|
2014-12-06 02:12:25 +00:00
|
|
|
impl Foo for isize {
|
2014-07-02 04:59:16 +00:00
|
|
|
// invalid bound for T, was defined as Eq in trait
|
|
|
|
fn test_error1_fn<T: Ord>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
// invalid bound for T, was defined as Eq + Ord in trait
|
|
|
|
fn test_error2_fn<T: Eq + B>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
// invalid bound for T, was defined as Eq + Ord in trait
|
|
|
|
fn test_error3_fn<T: B + Eq>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
// multiple bounds, same order as in trait
|
|
|
|
fn test3_fn<T: Ord + Eq>(&self) {}
|
|
|
|
|
|
|
|
// multiple bounds, different order as in trait
|
|
|
|
fn test4_fn<T: Eq + Ord>(&self) {}
|
|
|
|
|
|
|
|
// parameters in impls must be equal or more general than in the defining trait
|
|
|
|
fn test_error5_fn<T: B>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
// bound `std::cmp::Eq` not enforced by this implementation, but this is OK
|
|
|
|
fn test6_fn<T: A>(&self) {}
|
|
|
|
|
|
|
|
fn test_error7_fn<T: A + Eq>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
fn test_error8_fn<T: C>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
}
|
|
|
|
|
2015-02-12 15:29:52 +00:00
|
|
|
trait Getter<T> {
|
|
|
|
fn get(&self) -> T { loop { } }
|
|
|
|
}
|
2014-07-02 04:59:16 +00:00
|
|
|
|
|
|
|
trait Trait {
|
2015-02-12 15:29:52 +00:00
|
|
|
fn method<G:Getter<isize>>(&self);
|
2014-07-02 04:59:16 +00:00
|
|
|
}
|
|
|
|
|
2014-12-06 02:12:25 +00:00
|
|
|
impl Trait for usize {
|
2015-02-12 15:29:52 +00:00
|
|
|
fn method<G: Getter<usize>>(&self) {}
|
2016-10-14 14:10:22 +00:00
|
|
|
//~^ ERROR E0276
|
2014-07-02 04:59:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|