summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/issue-79422.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/generic-associated-types/issue-79422.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/generic-associated-types/issue-79422.rs')
-rw-r--r--src/test/ui/generic-associated-types/issue-79422.rs51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/test/ui/generic-associated-types/issue-79422.rs b/src/test/ui/generic-associated-types/issue-79422.rs
new file mode 100644
index 000000000..7749975e6
--- /dev/null
+++ b/src/test/ui/generic-associated-types/issue-79422.rs
@@ -0,0 +1,51 @@
+// revisions: base extended
+
+#![feature(generic_associated_types)]
+#![cfg_attr(extended, feature(generic_associated_types_extended))]
+#![cfg_attr(extended, allow(incomplete_features))]
+
+trait RefCont<'a, T> {
+ fn t(&'a self) -> &'a T;
+}
+
+impl<'a, T> RefCont<'a, T> for &'a T {
+ fn t(&'a self) -> &'a T {
+ self
+ }
+}
+
+impl<'a, T> RefCont<'a, T> for Box<T> {
+ fn t(&'a self) -> &'a T {
+ self.as_ref()
+ }
+}
+
+trait MapLike<K, V> {
+ type VRefCont<'a>: RefCont<'a, V> where Self: 'a;
+ fn get<'a>(&'a self, key: &K) -> Option<Self::VRefCont<'a>>;
+}
+
+impl<K: Ord, V: 'static> MapLike<K, V> for std::collections::BTreeMap<K, V> {
+ type VRefCont<'a> = &'a V where Self: 'a;
+ fn get<'a>(&'a self, key: &K) -> Option<&'a V> {
+ std::collections::BTreeMap::get(self, key)
+ }
+}
+
+struct Source;
+
+impl<K, V: Default> MapLike<K, V> for Source {
+ type VRefCont<'a> = Box<V>;
+ fn get<'a>(&self, _: &K) -> Option<Box<V>> {
+ Some(Box::new(V::default()))
+ }
+}
+
+fn main() {
+ let m = Box::new(std::collections::BTreeMap::<u8, u8>::new())
+ //[base]~^ ERROR the trait
+ //[extended]~^^ type mismatch
+ as Box<dyn MapLike<u8, u8, VRefCont = dyn RefCont<'_, u8>>>;
+ //~^ ERROR missing generics for associated type
+ //[base]~^^ ERROR the trait
+}