Skip to content

Commit 53ede44

Browse files
committed
Coherence tests that seemed to be missing.
1 parent 450263d commit 53ede44

File tree

2 files changed

+72
-0
lines changed

2 files changed

+72
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::fmt::Show;
12+
use std::default::Default;
13+
14+
// Test that two blanket impls conflict (at least without negative
15+
// bounds). After all, some other crate could implement Even or Odd
16+
// for the same type (though this crate doesn't).
17+
18+
trait MyTrait {
19+
fn get(&self) -> uint;
20+
}
21+
22+
trait Even { }
23+
24+
trait Odd { }
25+
26+
impl Even for int { }
27+
28+
impl Odd for uint { }
29+
30+
impl<T:Even> MyTrait for T { //~ ERROR E0119
31+
fn get(&self) -> uint { 0 }
32+
}
33+
34+
impl<T:Odd> MyTrait for T {
35+
fn get(&self) -> uint { 0 }
36+
}
37+
38+
fn main() { }
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
use std::fmt::Show;
12+
use std::default::Default;
13+
14+
// Test that two blanket impls conflict (at least without negative
15+
// bounds). After all, some other crate could implement Even or Odd
16+
// for the same type (though this crate doesn't implement them at all).
17+
18+
trait MyTrait {
19+
fn get(&self) -> uint;
20+
}
21+
22+
trait Even { }
23+
24+
trait Odd { }
25+
26+
impl<T:Even> MyTrait for T { //~ ERROR E0119
27+
fn get(&self) -> uint { 0 }
28+
}
29+
30+
impl<T:Odd> MyTrait for T {
31+
fn get(&self) -> uint { 0 }
32+
}
33+
34+
fn main() { }

0 commit comments

Comments
 (0)