summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/missing-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generic-associated-types/missing-bounds.rs')
-rw-r--r--tests/ui/generic-associated-types/missing-bounds.rs46
1 files changed, 46 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/missing-bounds.rs b/tests/ui/generic-associated-types/missing-bounds.rs
new file mode 100644
index 000000000..ffafff5e9
--- /dev/null
+++ b/tests/ui/generic-associated-types/missing-bounds.rs
@@ -0,0 +1,46 @@
+// run-rustfix
+
+use std::ops::Add;
+
+struct A<B>(B);
+
+impl<B> Add for A<B> where B: Add {
+ type Output = Self;
+
+ fn add(self, rhs: Self) -> Self {
+ A(self.0 + rhs.0) //~ ERROR mismatched types
+ }
+}
+
+struct C<B>(B);
+
+impl<B: Add> Add for C<B> {
+ type Output = Self;
+
+ fn add(self, rhs: Self) -> Self {
+ Self(self.0 + rhs.0) //~ ERROR mismatched types
+ }
+}
+
+struct D<B>(B);
+
+impl<B> Add for D<B> {
+ type Output = Self;
+
+ fn add(self, rhs: Self) -> Self {
+ Self(self.0 + rhs.0) //~ ERROR cannot add `B` to `B`
+ }
+}
+
+struct E<B>(B);
+
+impl<B: Add> Add for E<B> where <B as Add>::Output = B {
+ //~^ ERROR equality constraints are not yet supported in `where` clauses
+ type Output = Self;
+
+ fn add(self, rhs: Self) -> Self {
+ Self(self.0 + rhs.0) //~ ERROR mismatched types
+ }
+}
+
+fn main() {}