about summary refs log tree commit diff
path: root/tests/ui/impl-trait/dyn-trait-elided-two-inputs-assoc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/impl-trait/dyn-trait-elided-two-inputs-assoc.rs')
-rw-r--r--tests/ui/impl-trait/dyn-trait-elided-two-inputs-assoc.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/impl-trait/dyn-trait-elided-two-inputs-assoc.rs b/tests/ui/impl-trait/dyn-trait-elided-two-inputs-assoc.rs
new file mode 100644
index 00000000000..3b714157384
--- /dev/null
+++ b/tests/ui/impl-trait/dyn-trait-elided-two-inputs-assoc.rs
@@ -0,0 +1,16 @@
+// Test that we don't get an error with `dyn Bar` in an impl Trait
+// when there are multiple inputs.  The `dyn Bar` should default to `+
+// 'static`. This used to erroneously generate an error (cc #62517).
+//
+// check-pass
+
+trait Foo { type Item: ?Sized; }
+trait Bar { }
+
+impl<T> Foo for T {
+    type Item = dyn Bar;
+}
+
+fn foo(x: &str, y: &str) -> impl Foo<Item = dyn Bar> { () }
+
+fn main() { }