summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/local-outlives-static-via-hrtb.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/nll/local-outlives-static-via-hrtb.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/nll/local-outlives-static-via-hrtb.rs')
-rw-r--r--src/test/ui/nll/local-outlives-static-via-hrtb.rs26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/test/ui/nll/local-outlives-static-via-hrtb.rs b/src/test/ui/nll/local-outlives-static-via-hrtb.rs
deleted file mode 100644
index 5f1f9b3a7..000000000
--- a/src/test/ui/nll/local-outlives-static-via-hrtb.rs
+++ /dev/null
@@ -1,26 +0,0 @@
-// Test that we handle the case when a local variable is borrowed for `'static`
-// due to an outlives constraint involving a region in an incompatible universe
-
-pub trait Outlives<'this> {}
-
-impl<'this, T> Outlives<'this> for T where T: 'this {}
-trait Reference {
- type AssociatedType;
-}
-
-impl<'a, T: 'a> Reference for &'a T {
- type AssociatedType = &'a ();
-}
-
-fn assert_static_via_hrtb<G>(_: G) where for<'a> G: Outlives<'a> {}
-
-fn assert_static_via_hrtb_with_assoc_type<T>(_: &'_ T)
-where
- for<'a> &'a T: Reference<AssociatedType = &'a ()>,
-{}
-
-fn main() {
- let local = 0;
- assert_static_via_hrtb(&local); //~ ERROR `local` does not live long enough
- assert_static_via_hrtb_with_assoc_type(&&local); //~ ERROR `local` does not live long enough
-}