summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/hr-associated-type-bound-param-1.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/associated-types/hr-associated-type-bound-param-1.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/ui/associated-types/hr-associated-type-bound-param-1.rs b/src/test/ui/associated-types/hr-associated-type-bound-param-1.rs
new file mode 100644
index 000000000..bbeeb145d
--- /dev/null
+++ b/src/test/ui/associated-types/hr-associated-type-bound-param-1.rs
@@ -0,0 +1,20 @@
+trait Y<'a, T: ?Sized>
+where
+ T: Y<'a, Self>,
+ for<'b> <Self as Y<'b, T>>::V: Clone,
+ for<'b> <T as Y<'b, Self>>::V: Clone,
+{
+ type V: ?Sized;
+ fn g(&self, x: &Self::V) {
+ <Self::V>::clone(x);
+ }
+}
+
+impl<'a> Y<'a, u8> for u8 {
+ type V = str;
+ //~^ ERROR the trait bound `str: Clone` is not satisfied
+}
+
+fn main() {
+ 1u8.g("abc");
+}