summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/regions-infer-static-from-proc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/regions/regions-infer-static-from-proc.rs')
-rw-r--r--tests/ui/regions/regions-infer-static-from-proc.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/regions/regions-infer-static-from-proc.rs b/tests/ui/regions/regions-infer-static-from-proc.rs
new file mode 100644
index 000000000..39501e2d6
--- /dev/null
+++ b/tests/ui/regions/regions-infer-static-from-proc.rs
@@ -0,0 +1,18 @@
+// run-pass
+#![allow(non_upper_case_globals)]
+
+// Check that the 'static bound on a proc influences lifetimes of
+// region variables contained within (otherwise, region inference will
+// give `x` a very short lifetime).
+
+// pretty-expanded FIXME #23616
+
+static i: usize = 3;
+fn foo<F:FnOnce()+'static>(_: F) {}
+fn read(_: usize) { }
+pub fn main() {
+ let x = &i;
+ foo(move|| {
+ read(*x);
+ });
+}