about summary refs log tree commit diff
path: root/src/test/compile-fail
diff options
context:
space:
mode:
authorAriel Ben-Yehuda <ariel.byd@gmail.com>2017-11-22 23:01:51 +0200
committerAriel Ben-Yehuda <ariel.byd@gmail.com>2017-12-05 15:41:40 +0200
commit1271ea4f958d335ee67452faff925ab9b8715648 (patch)
tree99b55de91738fe9786913e046933ba403c4af879 /src/test/compile-fail
parent38747dd3a7e3ffd0eb3cec501184638ac644fef6 (diff)
downloadrust-1271ea4f958d335ee67452faff925ab9b8715648.tar.gz
rust-1271ea4f958d335ee67452faff925ab9b8715648.zip
refactor a bit
Diffstat (limited to 'src/test/compile-fail')
-rw-r--r--src/test/compile-fail/issue-43355.rs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-43355.rs b/src/test/compile-fail/issue-43355.rs
new file mode 100644
index 00000000000..b379507c1db
--- /dev/null
+++ b/src/test/compile-fail/issue-43355.rs
@@ -0,0 +1,29 @@
+// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+pub trait Trait1<X> {
+    type Output;
+}
+
+pub trait Trait2<X> {}
+
+pub struct A;
+
+impl<X, T> Trait1<X> for T where T: Trait2<X> {
+    type Output = ();
+}
+
+impl<X> Trait1<Box<X>> for A {
+//~^ ERROR conflicting implementations of trait
+//~| downstream crates may implement trait `Trait2<std::boxed::Box<_>>` for type `A`
+    type Output = i32;
+}
+
+fn main() {}