summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/bugs/issue-87755.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generic-associated-types/bugs/issue-87755.rs')
-rw-r--r--tests/ui/generic-associated-types/bugs/issue-87755.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/generic-associated-types/bugs/issue-87755.rs b/tests/ui/generic-associated-types/bugs/issue-87755.rs
new file mode 100644
index 000000000..cda722d2f
--- /dev/null
+++ b/tests/ui/generic-associated-types/bugs/issue-87755.rs
@@ -0,0 +1,19 @@
+// check-fail
+// known-bug: #87755
+
+// This should pass.
+
+use std::fmt::Debug;
+
+trait Foo {
+ type Ass where Self::Ass: Debug;
+}
+
+#[derive(Debug)]
+struct Bar;
+
+impl Foo for Bar {
+ type Ass = Bar;
+}
+
+fn main() {}