Skip to content

Commit e37c816

Browse files
committed
---
yaml --- r: 138407 b: refs/heads/master c: 53ede44 h: refs/heads/master i: 138405: b149877 138403: 2af240e 138399: 0086df1 v: v3
1 parent 8a081c1 commit e37c816

File tree

3 files changed

+73
-1
lines changed

3 files changed

+73
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 450263de4a93e7dd4eb863c8f4b98fc780b9c385
2+
refs/heads/master: 53ede4403bb79604eb378ba01f664a548a744044
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
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)