summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/associated-types-project-from-hrtb-in-fn.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/ui/associated-types/associated-types-project-from-hrtb-in-fn.rs
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.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-types/associated-types-project-from-hrtb-in-fn.rs')
-rw-r--r--src/test/ui/associated-types/associated-types-project-from-hrtb-in-fn.rs37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/test/ui/associated-types/associated-types-project-from-hrtb-in-fn.rs b/src/test/ui/associated-types/associated-types-project-from-hrtb-in-fn.rs
deleted file mode 100644
index 1e23dd889..000000000
--- a/src/test/ui/associated-types/associated-types-project-from-hrtb-in-fn.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-#![allow(dead_code, unused_variables)]
-// run-rustfix
-// Check projection of an associated type out of a higher-ranked trait-bound
-// in the context of a function signature.
-
-pub trait Foo<T> {
- type A;
-
- fn get(&self, t: T) -> Self::A;
-}
-
-fn foo2<I : for<'x> Foo<&'x isize>>(
- x: I::A)
- //~^ ERROR cannot use the associated type of a trait with uninferred generic parameters
-{
- // This case is illegal because we have to instantiate `'x`, and
- // we don't know what region to instantiate it with.
- //
- // This could perhaps be made equivalent to the examples below,
- // specifically for fn signatures.
-}
-
-fn foo3<I : for<'x> Foo<&'x isize>>(
- x: <I as Foo<&isize>>::A)
-{
- // OK, in this case we spelled out the precise regions involved, though we left one of
- // them anonymous.
-}
-
-fn foo4<'a, I : for<'x> Foo<&'x isize>>(
- x: <I as Foo<&'a isize>>::A)
-{
- // OK, in this case we spelled out the precise regions involved.
-}
-
-
-pub fn main() {}