summaryrefslogtreecommitdiffstats
path: root/src/test/ui/where-clauses/where-clause-early-bound-lifetimes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/where-clauses/where-clause-early-bound-lifetimes.rs')
-rw-r--r--src/test/ui/where-clauses/where-clause-early-bound-lifetimes.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/test/ui/where-clauses/where-clause-early-bound-lifetimes.rs b/src/test/ui/where-clauses/where-clause-early-bound-lifetimes.rs
new file mode 100644
index 000000000..6fc570b9b
--- /dev/null
+++ b/src/test/ui/where-clauses/where-clause-early-bound-lifetimes.rs
@@ -0,0 +1,18 @@
+// run-pass
+#![allow(non_upper_case_globals)]
+
+// pretty-expanded FIXME #23616
+
+trait TheTrait { fn dummy(&self) { } }
+
+impl TheTrait for &'static isize { }
+
+fn foo<'a,T>(_: &'a T) where &'a T : TheTrait { }
+
+fn bar<T>(_: &'static T) where &'static T : TheTrait { }
+
+fn main() {
+ static x: isize = 1;
+ foo(&x);
+ bar(&x);
+}