about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-08-11 12:44:35 -0500
committerMark Mansi <markm@cs.wisc.edu>2018-08-27 12:40:16 -0500
commit15b2640e70e6d9b004dee9c782d91563a94fefbd (patch)
treeae4f268f4385d250d9f60ea1be900591fa4fe625
parent3a9cf120219423254022d4908675fe307098c257 (diff)
fix another
-rw-r--r--src/test/ui/impl-trait/where-allowed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/impl-trait/where-allowed.rs b/src/test/ui/impl-trait/where-allowed.rs
index 2891cd59e3e..69f6d202f14 100644
--- a/src/test/ui/impl-trait/where-allowed.rs
+++ b/src/test/ui/impl-trait/where-allowed.rs
@@ -125,7 +125,7 @@ trait InTraitDefnReturn {
 // Allowed and disallowed in trait impls
 trait DummyTrait {
     type Out;
-    fn in_trait_impl_parameter(impl Debug);
+    fn in_trait_impl_parameter(_: impl Debug);
     fn in_trait_impl_return() -> Self::Out;
 }
 impl DummyTrait for () {