summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-type-bounds/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/associated-type-bounds/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/associated-type-bounds/hrtb.rs')
-rw-r--r--src/test/ui/associated-type-bounds/hrtb.rs65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/test/ui/associated-type-bounds/hrtb.rs b/src/test/ui/associated-type-bounds/hrtb.rs
deleted file mode 100644
index 7ab383649..000000000
--- a/src/test/ui/associated-type-bounds/hrtb.rs
+++ /dev/null
@@ -1,65 +0,0 @@
-// check-pass
-
-#![feature(associated_type_bounds)]
-
-trait A<'a> {}
-trait B<'b> {}
-fn foo<T>()
-where
- for<'a> T: A<'a> + 'a,
-{
-}
-trait C<'c>: for<'a> A<'a> + for<'b> B<'b> {
- type As;
-}
-struct D<T>
-where
- T: for<'c> C<'c, As: A<'c>>,
-{
- t: std::marker::PhantomData<T>,
-}
-
-trait E<'e> {
- type As;
-}
-trait F<'f>: for<'a> A<'a> + for<'e> E<'e> {}
-struct G<T>
-where
- for<'f> T: F<'f, As: E<'f>> + 'f,
-{
- t: std::marker::PhantomData<T>,
-}
-
-trait I<'a, 'b, 'c> {
- type As;
-}
-trait H<'d, 'e>: for<'f> I<'d, 'f, 'e> + 'd {}
-fn foo2<T>()
-where
- T: for<'g> H<'g, 'g, As: for<'h> H<'h, 'g> + 'g>,
-{
-}
-
-fn foo3<T>()
-where
- T: for<'i> H<'i, 'i, As: for<'j> H<'j, 'i, As: for<'k> I<'i, 'k, 'j> + 'j> + 'i>,
-{
-}
-fn foo4<T>()
-where
- T: for<'l, 'i> H<'l, 'i, As: for<'j> H<'j, 'i, As: for<'k> I<'l, 'k, 'j> + 'j> + 'i>,
-{
-}
-
-struct X<'x, 'y> {
- x: std::marker::PhantomData<&'x ()>,
- y: std::marker::PhantomData<&'y ()>,
-}
-
-fn foo5<T>()
-where
- T: for<'l, 'i> H<'l, 'i, As: for<'j> H<'j, 'i, As: for<'k> H<'j, 'k, As = X<'j, 'k>> + 'j> + 'i>
-{
-}
-
-fn main() {}