about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSantiago Pastorino <spastorino@gmail.com>2021-02-05 15:52:57 -0300
committerSantiago Pastorino <spastorino@gmail.com>2021-02-08 16:47:51 -0300
commit8d17c6a85d6530d446d1cb42ee6636c5c9fbfaaf (patch)
treebe308f5a8f6f0cc0b2974dd38c16fcf198b86d52 /src
parentfd092557ceb36998dc93aa46a797745c58f1969f (diff)
Anonymize late bound regions on transitive bounds that define assoc type
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/associated-type-bounds/traits-assoc-anonymized.rs33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/test/ui/associated-type-bounds/traits-assoc-anonymized.rs b/src/test/ui/associated-type-bounds/traits-assoc-anonymized.rs
new file mode 100644
index 00000000000..a9d6eed810a
--- /dev/null
+++ b/src/test/ui/associated-type-bounds/traits-assoc-anonymized.rs
@@ -0,0 +1,33 @@
+// check-pass
+
+pub struct LookupInternedStorage;
+
+impl<Q> QueryStorageOps<Q> for LookupInternedStorage
+where
+    Q: Query,
+    for<'d> Q: QueryDb<'d>,
+{
+    fn fmt_index(&self, db: &<Q as QueryDb<'_>>::DynDb) {
+        <<Q as QueryDb<'_>>::DynDb as HasQueryGroup<Q::Group>>::group_storage(db);
+    }
+}
+
+pub trait HasQueryGroup<G> {
+    fn group_storage(&self);
+}
+
+pub trait QueryStorageOps<Q>
+where
+    Q: Query,
+{
+    fn fmt_index(&self, db: &<Q as QueryDb<'_>>::DynDb);
+}
+
+pub trait QueryDb<'d> {
+    type DynDb: HasQueryGroup<Self::Group> + 'd;
+    type Group;
+}
+
+pub trait Query: for<'d> QueryDb<'d> {}
+
+fn main() {}