fix another

This commit is contained in:
Mark Mansi 2018-08-11 12:44:35 -05:00
parent 3a9cf12021
commit 15b2640e70

View File

@ -125,7 +125,7 @@ trait InTraitDefnReturn {
// Allowed and disallowed in trait impls // Allowed and disallowed in trait impls
trait DummyTrait { trait DummyTrait {
type Out; type Out;
fn in_trait_impl_parameter(impl Debug); fn in_trait_impl_parameter(_: impl Debug);
fn in_trait_impl_return() -> Self::Out; fn in_trait_impl_return() -> Self::Out;
} }
impl DummyTrait for () { impl DummyTrait for () {