1 use std::fmt::Debug;
2 use std::default::Default;
3 
4 // Test that two blanket impls conflict (at least without negative
5 // bounds).  After all, some other crate could implement Even or Odd
6 // for the same type (though this crate doesn't implement them at all).
7 
8 trait MyTrait {
get(&self) -> usize9     fn get(&self) -> usize;
10 }
11 
12 trait Even {}
13 
14 trait Odd {}
15 
16 impl<T:Even> MyTrait for T {
get(&self) -> usize17     fn get(&self) -> usize { 0 }
18 }
19 
20 impl<T:Odd> MyTrait for T {
21 //~^ ERROR E0119
get(&self) -> usize22     fn get(&self) -> usize { 0 }
23 }
24 
main()25 fn main() { }
26