summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/where_clauses_in_structs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/where_clauses_in_structs.rs')
-rw-r--r--src/test/ui/nll/where_clauses_in_structs.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/nll/where_clauses_in_structs.rs b/src/test/ui/nll/where_clauses_in_structs.rs
new file mode 100644
index 000000000..fae5d3811
--- /dev/null
+++ b/src/test/ui/nll/where_clauses_in_structs.rs
@@ -0,0 +1,15 @@
+#![allow(dead_code)]
+
+use std::cell::Cell;
+
+struct Foo<'a: 'b, 'b> {
+ x: Cell<&'a u32>,
+ y: Cell<&'b u32>,
+}
+
+fn bar<'a, 'b>(x: Cell<&'a u32>, y: Cell<&'b u32>) {
+ Foo { x, y };
+ //~^ ERROR lifetime may not live long enough
+}
+
+fn main() {}