summaryrefslogtreecommitdiffstats
path: root/src/test/ui/trivial-bounds/trivial-bounds-object.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/trivial-bounds/trivial-bounds-object.rs')
-rw-r--r--src/test/ui/trivial-bounds/trivial-bounds-object.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/trivial-bounds/trivial-bounds-object.rs b/src/test/ui/trivial-bounds/trivial-bounds-object.rs
new file mode 100644
index 000000000..f5feeea7c
--- /dev/null
+++ b/src/test/ui/trivial-bounds/trivial-bounds-object.rs
@@ -0,0 +1,18 @@
+// 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 () {}