]> git.lizzy.rs Git - rust.git/commitdiff
Test that object bounds are preferred over global where clause bounds
authorMatthew Jasper <mjjasper1@gmail.com>
Fri, 8 Jun 2018 16:00:36 +0000 (17:00 +0100)
committerMatthew Jasper <mjjasper1@gmail.com>
Fri, 8 Jun 2018 16:00:36 +0000 (17:00 +0100)
src/test/ui/trivial-bounds-object.rs [new file with mode: 0644]

diff --git a/src/test/ui/trivial-bounds-object.rs b/src/test/ui/trivial-bounds-object.rs
new file mode 100644 (file)
index 0000000..00986ee
--- /dev/null
@@ -0,0 +1,28 @@
+// Copyright 2018 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.
+
+// run-pass
+// Check that the object bound dyn A + 'a: A is preferred over the
+// where clause bound dyn A + 'static: A.
+
+#![allow(unused)]
+
+trait A {
+    fn test(&self);
+}
+
+fn foo(x: &dyn A)
+where
+    dyn A + 'static: A, // Using this bound would lead to a lifetime error.
+{
+    x.test();
+}
+
+fn main () {}