summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/type-test-universe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/type-test-universe.rs')
-rw-r--r--src/test/ui/nll/type-test-universe.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/nll/type-test-universe.rs b/src/test/ui/nll/type-test-universe.rs
new file mode 100644
index 000000000..f9801c07d
--- /dev/null
+++ b/src/test/ui/nll/type-test-universe.rs
@@ -0,0 +1,21 @@
+// Regression test for #98095: make sure that
+// we detect that S needs to outlive 'static.
+
+fn outlives_forall<T>()
+where
+ for<'u> T: 'u,
+{
+}
+
+fn test1<S>() {
+ outlives_forall::<S>();
+ //~^ ERROR `S` does not live long enough
+}
+
+struct Value<'a>(&'a ());
+fn test2<'a>() {
+ outlives_forall::<Value<'a>>();
+ //~^ ERROR lifetime may not live long enough
+}
+
+fn main() {}