about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Thoresen <martinhath@gmail.com>2016-10-03 14:46:21 +0200
committerMartin Thoresen <martinhath@gmail.com>2016-10-03 23:40:40 +0200
commitd8ddef0de33765c3f86672f20b06b9351763d287 (patch)
treea8e4cd3d6a83b837fedf66ecb81799c878d03a10
parentff713464e6530fab2e13d0965929d8189c59ae56 (diff)
downloadrust-d8ddef0de33765c3f86672f20b06b9351763d287.tar.gz
rust-d8ddef0de33765c3f86672f20b06b9351763d287.zip
Add test for Issue #21837
-rw-r--r--src/test/compile-fail/issue-21837.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-21837.rs b/src/test/compile-fail/issue-21837.rs
new file mode 100644
index 00000000000..86506de1ea9
--- /dev/null
+++ b/src/test/compile-fail/issue-21837.rs
@@ -0,0 +1,20 @@
+// Copyright 2014 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 Bound {}
+pub struct Foo<T: Bound>(T);
+
+pub trait Trait1 {}
+impl<T: Bound> Trait1 for Foo<T> {}
+
+pub trait Trait2 {}
+impl<T> Trait2 for Foo<T> {} //~ ERROR the trait bound `T: Bound` is not satisfied
+
+fn main() {}