diff options
| author | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2020-01-24 21:04:17 +0100 |
|---|---|---|
| committer | Oliver Scherer <github35764891676564198441@oli-obk.de> | 2020-01-25 13:19:21 +0100 |
| commit | ae31436ac739d2fe9fdb45fec1364db6007bd359 (patch) | |
| tree | c4fc18e2bc7030d2b4ee1d034b80ab9f13f28e87 /src/test/ui/error-codes | |
| parent | 80a65bcaf2f2b8a5c659b21b32b42bc300338a0e (diff) | |
| download | rust-ae31436ac739d2fe9fdb45fec1364db6007bd359.tar.gz rust-ae31436ac739d2fe9fdb45fec1364db6007bd359.zip | |
Don't use spaces before type ascription like colons
Diffstat (limited to 'src/test/ui/error-codes')
| -rw-r--r-- | src/test/ui/error-codes/e0119/complex-impl.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/error-codes/e0119/complex-impl.stderr b/src/test/ui/error-codes/e0119/complex-impl.stderr index 0c18a1fbd1f..2cc09e8b147 100644 --- a/src/test/ui/error-codes/e0119/complex-impl.stderr +++ b/src/test/ui/error-codes/e0119/complex-impl.stderr @@ -6,7 +6,7 @@ LL | impl<R> External for (Q, R) {} | = note: conflicting implementation in crate `complex_impl_support`: - impl<'a, 'b, 'c, T, U, V, W> complex_impl_support::External for (T, complex_impl_support::M<'a, 'b, 'c, std::boxed::Box<U>, V, W>) - where <U as std::ops::FnOnce<(T,)>>::Output == V, <V as std::iter::Iterator>::Item == T, 'b : 'a, T : 'a, U: std::ops::FnOnce<(T,)>, U : 'static, V: std::iter::Iterator, V: std::clone::Clone, W: std::ops::Add, <W as std::ops::Add>::Output: std::marker::Copy; + where <U as std::ops::FnOnce<(T,)>>::Output == V, <V as std::iter::Iterator>::Item == T, 'b: 'a, T: 'a, U: std::ops::FnOnce<(T,)>, U: 'static, V: std::iter::Iterator, V: std::clone::Clone, W: std::ops::Add, <W as std::ops::Add>::Output: std::marker::Copy; error[E0117]: only traits defined in the current crate can be implemented for arbitrary types --> $DIR/complex-impl.rs:9:1 |
