diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2017-04-11 17:12:00 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2017-04-11 20:32:48 -0400 |
| commit | 7832db8031a9051d377e1da92bbcd56e366354c1 (patch) | |
| tree | 82fb120de47f3f848388ddd0ad0de012651d8eec | |
| parent | 0fae3324a2f58e921e2094a6971962c0b09c04ee (diff) | |
| download | rust-7832db8031a9051d377e1da92bbcd56e366354c1.tar.gz rust-7832db8031a9051d377e1da92bbcd56e366354c1.zip | |
fix long line
| -rw-r--r-- | src/librustc/traits/structural_impls.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc/traits/structural_impls.rs b/src/librustc/traits/structural_impls.rs index fcaa29be963..9d0b1035ade 100644 --- a/src/librustc/traits/structural_impls.rs +++ b/src/librustc/traits/structural_impls.rs @@ -130,7 +130,8 @@ impl<'tcx> fmt::Debug for traits::FulfillmentErrorCode<'tcx> { match *self { super::CodeSelectionError(ref e) => write!(f, "{:?}", e), super::CodeProjectionError(ref e) => write!(f, "{:?}", e), - super::CodeSubtypeError(ref a, ref b) => write!(f, "CodeSubtypeError({:?}, {:?})", a, b), + super::CodeSubtypeError(ref a, ref b) => + write!(f, "CodeSubtypeError({:?}, {:?})", a, b), super::CodeAmbiguity => write!(f, "Ambiguity") } } |
