diff options
author | Sebastian Imlay <sebastian.imlay@gmail.com> | 2020-08-31 02:13:39 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2020-09-16 12:26:24 +0200 |
commit | 0dff6d65d5a9ac086c951bd3d55058d3dbb7e193 (patch) | |
tree | f56b0a4ead8c1754d3e29ab3d54c4f6d04ef1215 | |
parent | c24626993d42c737631d702043b53da0faeb1fd5 (diff) |
Fix spacing issue
-rw-r--r-- | tests/expectations/tests/libclang-3.9/objc_inheritance.rs | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/tests/expectations/tests/libclang-3.9/objc_inheritance.rs b/tests/expectations/tests/libclang-3.9/objc_inheritance.rs index 982fc14c..76b758ec 100644 --- a/tests/expectations/tests/libclang-3.9/objc_inheritance.rs +++ b/tests/expectations/tests/libclang-3.9/objc_inheritance.rs @@ -44,16 +44,11 @@ impl Bar { } impl IFoo for Bar {} -mpl From<Bar> for Foo { - -+ fn from(child: Bar) -> Foo { - -+ Foo(child.0) - -+ } - -+} - +impl From<Bar> for Foo { + fn from(child: Bar) -> Foo { + Foo(child.0) + } +} impl std::convert::TryFrom<Foo> for Bar { type Error = String; fn try_from(parent: Foo) -> Result<Bar, Self::Error> { |